/etc/init.d/slashem-common is in slashem-common 0.0.7E7F3-7.
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 | #! /bin/sh
### BEGIN INIT INFO
# Provides: slashem-common
# Required-Start: $local_fs $remote_fs
# Should-Start:
# Required-Stop: $remote_fs
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Should-Stop:
# Short-Description: Slashem save-file recovery script for Debian
# Description: Recovers Slashem save-files on start
### END INIT INFO
. /lib/lsb/init-functions
PATH=/bin:/usr/bin:/sbin:/usr/sbin
set -e
case "$1" in
start)
# Has the nethack package been removed?
test -x /usr/lib/games/slashem/recover-all || exit 0
exec /usr/lib/games/slashem/recover-all
;;
stop|reload|restart|force-reload|status)
;;
*)
N=/etc/init.d/slashem-common
echo "Usage: $N {start|stop|restart|force-reload|status}" >&2
exit 1
;;
esac
|