lxc-containers.in revision 0af993195cbd57cff700c7c90ee8f95c2a1ef8aa
#
#
# chkconfig: 345 99 01
#
### BEGIN INIT INFO
# Provides: lxc
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
}
stop() {
@LIBEXECDIR@/lxc/lxc-containers stop
}
# See how we were called.
case "$1" in
;;
stop)
stop
;;
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload}"
exit 2
;;
esac
exit $?