/etc/init.d/lizardfs-chunkserver is in lizardfs-chunkserver 3.10.4+dfsg-4.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | #!/bin/sh
#
### BEGIN INIT INFO
# Provides: lizardfs-chunkserver
# Required-Start: $local_fs $network $syslog $remote_fs
# Required-Stop: $local_fs $syslog $remote_fs
# Should-Start: $syslog $named lizardfs-master
# Should-Stop: $network $syslog lizardfs-master
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start up the lizardfs-chunkserver server daemon
# Description: LizardFS is a distributed, scalable, fault-tolerant and highly available file system.
# This service starts up the LizardFS chunkserver server daemon.
### END INIT INFO
DAEMON=/usr/sbin/mfschunkserver
NAME=lizardfs-chunkserver
CFGFILE=/etc/lizardfs/mfschunkserver.cfg
# Exit if executable is not installed
[ -x $DAEMON ] || exit 0
# Read configuration variable file if it is present
DEFAULTS_FILE=/etc/default/${NAME}
[ -r "$DEFAULTS_FILE" ] && . $DEFAULTS_FILE
PIDF=/var/run/${NAME}.pid
RETRY=TERM/60/KILL/5
# Load the VERBOSE setting and other rcS variables
[ -f /etc/default/rcS ] && . /etc/default/rcS
# define LSB log_* functions.
. /lib/lsb/init-functions
case "$1" in
start)
if $0 status >>/dev/null; then
log_action_msg "$NAME is already running"
exit 0
fi
log_action_begin_msg "$NAME starting"
if R=$(start-stop-daemon --exec $DAEMON --pidfile ${PIDF} --make-pidfile \
--start --background --oknodo -- -d -c ${CFGFILE} start 2>&1);
then
log_action_end_msg 0 "$R"
else
log_action_end_msg 1 "$R"
fi
;;
stop)
log_action_begin_msg "$NAME stopping"
if R=$(start-stop-daemon --exec $DAEMON --pidfile ${PIDF} --remove-pidfile \
--stop --retry=$RETRY --quiet);
then
log_action_end_msg 0 "$R"
else
log_action_end_msg 1 "not running"
fi
;;
reload)
log_action_begin_msg "Reloading $NAME configuration"
if start-stop-daemon --exec $DAEMON --pidfile ${PIDF} \
--stop --signal HUP --quiet;
then
log_action_end_msg 0
else
log_action_end_msg 1
fi
;;
force-reload|restart)
$0 stop
$0 start
;;
status)
## return status 0 if process is running.
status_of_proc -p ${PIDF} "$DAEMON" "$NAME"
;;
*)
N=/etc/init.d/$NAME
echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
;;
esac
|