lxc-containers.in revision 66188b02b8009075a2e0e2b89a14688c50565bf4
#
#
# chkconfig: 345 99 01
#
### BEGIN INIT INFO
# Provides: lxc
# Required-Start: $syslog $remote_fs
# Required-Stop: $syslog $remote_fs
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
sysconfdir="@SYSCONFDIR@"
# Source function library.
# provide action() fallback
# Real basic fallback for sysvinit "action" verbage.
echo -n "$1 "
shift
"$@" && echo "OK" || echo "Failed"
}
fi
# Setup host /dev for autodev 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 $?