/etc/rc0.d
NameSizeModeActions
K01apache-htcacheclean24890755editdlrm
K01apache281810755editdlrm
K01cryptdisks9370755editdlrm
K01cryptdisks-early8960755editdlrm
K01docker29460755editdlrm
K01fail2ban70130755editdlrm
K01irqbalance26380755editdlrm
K01iscsid15030755editdlrm
K01lvm2-lvmpolld5860755editdlrm
K01multipath-tools-0editdlrm
K01mysql56070755editdlrm
K01netdiag18160755editdlrm
K01nginx45790755editdlrm
K01open-iscsi24330755editdlrm
K01open-vm-tools18460755editdlrm
K01php8.1-fpm42940755editdlrm
K01php8.3-fpm42940755editdlrm
K01php8.5-fpm42940755editdlrm
K01plymouth13860755editdlrm
K01postfix30890755editdlrm
K01udev68710755editdlrm
K01unattended-upgrades13910755editdlrm
K01uuidd13060755editdlrm
Edit: /etc/init.d/plymouth (1386B)
#!/bin/sh ### BEGIN INIT INFO # Provides: plymouth # Required-Start: udev $remote_fs $all # Required-Stop: $remote_fs # Should-Start: $x-display-manager # Should-Stop: $x-display-manager # Default-Start: 2 3 4 5 # Default-Stop: 0 6 # Short-Description: Stop plymouth during boot and start it on shutdown ### END INIT INFO PATH="/sbin:/bin:/usr/sbin:/usr/bin" NAME="plymouth" DESC="Boot splash manager" test -x /usr/sbin/plymouthd || exit 0 if [ -r "/etc/default/${NAME}" ] then . "/etc/default/${NAME}" fi . /lib/lsb/init-functions set -e SPLASH="true" for ARGUMENT in $(cat /proc/cmdline) do case "${ARGUMENT}" in splash*) SPLASH="true" ;; nosplash*|plymouth.enable=0) SPLASH="false" ;; esac done case "${1}" in start) case "${SPLASH}" in true) /usr/bin/plymouth quit --retain-splash ;; esac ;; stop) case "${SPLASH}" in true) if ! plymouth --ping then /usr/sbin/plymouthd --mode=shutdown fi RUNLEVEL="$(/sbin/runlevel | cut -d " " -f 2)" case "${RUNLEVEL}" in 0) TEXT="Shutting down system..." ;; 6) TEXT="Restarting system..." ;; esac /usr/bin/plymouth message --text="${TEXT}" /usr/bin/plymouth --show-splash ;; esac ;; restart|force-reload) ;; *) echo "Usage: ${0} {start|stop|restart|force-reload}" >&2 exit 1 ;; esac exit 0