remove rc
This commit is contained in:
43
rc.local
43
rc.local
@@ -1,43 +0,0 @@
|
|||||||
#! /bin/sh
|
|
||||||
### BEGIN INIT INFO
|
|
||||||
# Provides: rc.local
|
|
||||||
# Required-Start: $all
|
|
||||||
# Required-Stop:
|
|
||||||
# Default-Start: 2 3 4 5
|
|
||||||
# Default-Stop:
|
|
||||||
# Short-Description: Run /etc/rc.local if it exist
|
|
||||||
### END INIT INFO
|
|
||||||
|
|
||||||
|
|
||||||
PATH=/sbin:/usr/sbin:/bin:/usr/bin
|
|
||||||
|
|
||||||
. /lib/init/vars.sh
|
|
||||||
. /lib/lsb/init-functions
|
|
||||||
|
|
||||||
do_start() {
|
|
||||||
if [ -x /etc/rc.local ]; then
|
|
||||||
[ "$VERBOSE" != no ] && log_begin_msg "Running local boot scripts (/etc/rc.local)"
|
|
||||||
/etc/rc.local
|
|
||||||
ES=$?
|
|
||||||
[ "$VERBOSE" != no ] && log_end_msg $ES
|
|
||||||
return $ES
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
start)
|
|
||||||
do_start
|
|
||||||
;;
|
|
||||||
restart|reload|force-reload)
|
|
||||||
echo "Error: argument '$1' not supported" >&2
|
|
||||||
exit 3
|
|
||||||
;;
|
|
||||||
stop)
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Usage: $0 start|stop" >&2
|
|
||||||
exit 3
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
service docker start
|
|
||||||
exit 0
|
|
||||||
Reference in New Issue
Block a user