aboutsummaryrefslogtreecommitdiffstats
path: root/tools/examples
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2006-12-04 13:37:53 +0000
committerEwan Mellor <ewan@xensource.com>2006-12-04 13:37:53 +0000
commitd529c3d93bb3e11d25c0d20d1aea5c97cfb1dcf6 (patch)
tree9d4498e38caf807882dfebb558c4b8d275fe5a83 /tools/examples
parentaeb915bbac8121ff17bafe8946b72247a73d1349 (diff)
downloadxen-d529c3d93bb3e11d25c0d20d1aea5c97cfb1dcf6.tar.gz
xen-d529c3d93bb3e11d25c0d20d1aea5c97cfb1dcf6.tar.bz2
xen-d529c3d93bb3e11d25c0d20d1aea5c97cfb1dcf6.zip
Added rudimentary "xend reload" functionality. This allows you to reconfigure
the services offered by Xend, without restarting the daemon itself. Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'tools/examples')
-rwxr-xr-xtools/examples/init.d/xend5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/examples/init.d/xend b/tools/examples/init.d/xend
index 8ad407637c..c12b1a0386 100755
--- a/tools/examples/init.d/xend
+++ b/tools/examples/init.d/xend
@@ -36,7 +36,10 @@ case "$1" in
status)
xend status
;;
- restart|reload|force-reload)
+ reload)
+ xend reload
+ ;;
+ restart|force-reload)
xend restart
await_daemons_up
;;