3 # vip6-autod assigns auto-discovered IPv6 addresses to guests
5 # chkconfig: 2345 99 01
6 # description: starts vip6-autod
8 : ${UTIL_VSERVER_VARS:=/usr/lib/util-vserver/util-vserver-vars}
9 test -e "$UTIL_VSERVER_VARS" || {
10 echo $"Can not find util-vserver installation (the file '$UTIL_VSERVER_VARS' would be expected); aborting..." >&2
13 . "$UTIL_VSERVER_VARS"
16 . "$_LIB_VSERVER_INIT_FUNCTIONS"
22 _beginResult $"Starting $prog"
26 test "$retval" -ne 0 || touch "$lockfile"
32 _beginResult $"Stopping $prog"
44 start|stop|restart) $1;;
47 test -f $lockfile && restart || :
53 echo "Usage: $0 {start|stop|reload|restart|condrestart|status}"