/lib/lsb/init-functions.d/99-plymouth is in plymouth 0.9.2-3ubuntu13.
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 34 35 36 37 | # /lib/lsb/init-functions.d/99-plymouth
# Abort sourcing of this file if plymouth isn't active
if ! plymouth --ping > /dev/null 2>&1
then
return
fi
log_begin_msg_post ()
{
/bin/plymouth update --status="${@}" || true
}
log_end_msg_post ()
{
:
}
log_action_begin_msg_post ()
{
/bin/plymouth update --status="${@}" || true
}
log_action_end_msg_post ()
{
:
}
log_action_msg_post ()
{
/bin/plymouth update --status="${@}" || true
}
log_daemon_msg_post ()
{
/bin/plymouth update --status="${@}" || true
}
|