/etc/init.d/linuxlogo is in linuxlogo 5.11-3.
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 | #!/bin/sh
### BEGIN INIT INFO
# Provides: linuxlogo
# Required-Start: $local_fs $remote_fs
# Required-Stop: $local_fs $remote_fs
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Color ANSI System Logo
# Description: Debian init script for linuxlogo
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/linux_logo
NAME=linuxlogo
DESC="system logo"
test -x "${DAEMON}" || exit 0
. /lib/lsb/init-functions
set -e
case "${1}" in
start|restart|reload|force-reload)
log_action_begin_msg "Updating the ${DESC}"
mkdir -p /var/run/linuxlogo
"${DAEMON}" -t "Debian Version $(cat /etc/debian_version)" -f > /etc/issue.linuxlogo
"${DAEMON}" -t "Debian Version $(cat /etc/debian_version)" -a -f > /etc/issue.linuxlogo.ascii
for FILE in /etc/issue.linuxlogo /etc/issue.linuxlogo.ascii
do
printf "\n\n" >> "${FILE}"
cat /etc/issue >> "${FILE}"
done
log_action_end_msg 0
;;
stop|force-stop)
;;
display)
"${DAEMON}" -t "Debian Version $(cat /etc/debian_version)"
echo
echo "Press any key to exit..."
read ANYKEY
;;
status)
exit 0
;;
*)
echo "Usage: ${NAME} {start|restart|reload|force-reload|stop|force-stop|display|status}"
exit 1
;;
esac
exit 0
|