/etc/init/plymouth.conf is in plymouth 0.8.2-2ubuntu30.
This file is owned by root:root, with mode 0o644.
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 | # plymouth - Userspace bootsplash utility
#
# plymouth provides a boot splash screen on the system console using
# the kernel framebuffer device. On boot, this is nominally started by
# the initramfs so the pre-start script, script and post-start script
# parts are actually not run. These are normally run on shutdown instead.
description "Userspace bootsplash utility"
start on (starting mountall
or (runlevel [016]
and (desktop-shutdown
or stopped xdm
or stopped uxlaunch)))
expect fork
kill timeout 60
script
if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then
exec /sbin/plymouthd --mode=shutdown
else
exec /sbin/plymouthd --mode=boot --attach-to-session
fi
end script
post-start script
if [ "$RUNLEVEL" = "0" -o "$RUNLEVEL" = "1" -o "$RUNLEVEL" = "6" ]; then
exec /bin/plymouth show-splash
fi
end script
pre-stop exec /bin/plymouth quit
|