OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
etc
/
init.d
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
apparmor
3.65 KB
07/14/2024 10:22:07 PM
rwxr-xr-x
📄
cryptdisks
937 bytes
06/05/2024 01:46:49 PM
rwxr-xr-x
📄
cryptdisks-early
896 bytes
06/05/2024 01:46:49 PM
rwxr-xr-x
📄
dbus
3.08 KB
12/05/2023 03:36:45 PM
rwxr-xr-x
📄
kmod
2 KB
04/18/2024 10:06:53 AM
rwxr-xr-x
📄
plymouth
1.35 KB
03/21/2024 01:42:02 PM
rwxr-xr-x
📄
plymouth-log
760 bytes
03/21/2024 01:42:02 PM
rwxr-xr-x
📄
procps
959 bytes
03/24/2024 03:35:54 PM
rwxr-xr-x
📄
ssh
3.96 KB
07/30/2024 04:12:40 PM
rwxr-xr-x
Editing: plymouth
Close
#!/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