sample: use lowercase in init.d/conf.d sample files

This commit is contained in:
Natanael Copa 2009-12-30 08:55:33 +00:00
parent 5847b5473b
commit 171df570fd
2 changed files with 12 additions and 22 deletions

View File

@ -1,7 +1,7 @@
# Sample conf.d file for alpine linux
#
# Specify daemon $OPTS here.
# Specify daemon options here.
#
OPTS=""
sample_opts=""

View File

@ -2,38 +2,28 @@
# Sample init.d file for alpine linux.
NAME=
DAEMON=/usr/sbin/$NAME
name=
daemon=/usr/sbin/$name
depend() {
need net
after firewall
}
start() {
ebegin "Starting ${NAME}"
ebegin "Starting ${name}"
start-stop-daemon --start --quiet \
--pidfile /var/run/${NAME}.pid \
--chuid ${DAEMON_USER}:${DAEMON_GROUP} \
--exec ${DAEMON} -- ${OPTS}
--pidfile /var/run/${name}.pid \
--chuid ${sample_user}:${sample_group} \
--exec ${daemon} -- ${sample_opts}
eend $?
}
stop() {
ebegin "Stopping ${NAME}"
ebegin "Stopping ${name}"
start-stop-daemon --stop --quiet \
--exec ${DAEMON} \
--pidfile /var/run/${NAME}.pid \
eend $?
}
reload() {
ebegin "Reloading ${NAME}"
if ! service_started "${NAME}" ; then
eend 1 "${NAME} is not started"
return 1
fi
start-stop-daemon --stop --oknodo --signal HUP \
--exec ${DAEMON} --pidfile /var/run/${NAME}.pid
--pidfile /var/run/$name.pid \
--exec ${daemon}
eend $?
}