This file is indexed.

/etc/init/plymouth-ready.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
# plymouth-ready - send an event to indicate plymouth is up
#
# This job notifies that the plymouth splash screen is up, either started
# from the initrd or when the 'plymouth-splash' job starts.  The login
# managers use the event to avoid a race with plymouth-splash:
#
# https://bugs.launchpad.net/ubuntu/+source/plymouth/+bug/982889

description "Send an event to indicate plymouth is up"

task
start on startup or started plymouth-splash
instance $UPSTART_EVENTS

emits plymouth-ready

script
  if [ "$UPSTART_EVENTS" = started ] || \
     status plymouth-splash | grep -q "start/started" || \
     plymouth --ping
  then
    initctl emit plymouth-ready
  fi
end script