From 31fd3fa0ba0fd08e7ab26e6cf07e1bbe4c763359 Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 2 Mar 2009 15:32:34 +0000 Subject: [PATCH] add reload option to allow reload of xcatd on service nodes without restarting any services git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@2819 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/etc/init.d/xcatd | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/xCAT-server/etc/init.d/xcatd b/xCAT-server/etc/init.d/xcatd index 3fa369aec..37cbd8283 100755 --- a/xCAT-server/etc/init.d/xcatd +++ b/xCAT-server/etc/init.d/xcatd @@ -70,6 +70,12 @@ restart) $0 stop $0 start ;; +reload) + $0 stop + echo -n "Reloading xCATd " + export XCATRELOAD=yes + $0 start + ;; status) $STATUS ;;