# HG changeset patch # User iap10@labyrinth.cl.cam.ac.uk # Date 1106430339 0 # Node ID dde87d5385db05b9e80c0da44b7a04634bac2329 # Parent 4bbe824cb51972659395712e2d46cfdad2644d95 bitkeeper revision 1.1159.223.22 (41f2c983tNSS8-VlWIzF9A78zTQx-w) Description: add force-reload option Debian policy requires init scripts to implement force-reload. So, alias that to restart. From: Adam Heath Signed-off-by: ian.pratt@cl.cam.ac.uk diff -r 4bbe824cb519 -r dde87d5385db tools/examples/init.d/xend --- a/tools/examples/init.d/xend Sat Jan 22 21:43:33 2005 +0000 +++ b/tools/examples/init.d/xend Sat Jan 22 21:45:39 2005 +0000 @@ -32,14 +32,14 @@ case "$1" in status) xend status ;; - restart|reload) + restart|reload|force-reload) xend restart await_daemons_up ;; *) # do not advertise unreasonable commands that there is no reason # to use with this device - echo $"Usage: $0 {start|stop|status|restart|reload}" + echo $"Usage: $0 {start|stop|status|restart|reload|force-reload}" exit 1 esac