blob: ab135851ed604e27d83336b6a3aa07381f8dd03c (
plain)
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
}
|