/etc/init/plymouth-stop.conf is in plymouth 0.8.8-0ubuntu17.
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 | # plymouth-stop - Hide the splash screen
#
# This job ensures that only one service stops the plymouth splash screen,
# without it there can be a race between gdm starting up and beginning the
# proper transition procedure and rc2 ending and quitting plymouth resulting
# in it doing a VT switch.
start on (starting gdm
or starting kdm
or starting xdm
or starting lxdm
or starting lightdm
or starting uxlaunch
or starting ubiquity
or starting oem-config
or stopped rc RUNLEVEL=[2345]
or starting rcS
or starting mountall-shell)
stop on stopped plymouth
pre-start script
case "$JOB" in
gdm|lightdm|ubiquity|oem-config)
exit 0
;;
*)
exec /bin/plymouth quit
;;
esac
end script
|