~burhanilinux/+junk/plymouth

« back to all changes in this revision

Viewing changes to debian/local/plymouth.lsb

  • Committer: Juzer Dana
  • Date: 2024-01-14 13:03:08 UTC
  • Revision ID: juzerdana@gmail.com-20240114130308-urizjbjhjqmenga6
New Commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# /lib/lsb/init-functions.d/99-plymouth
 
2
 
 
3
# Abort sourcing of this file if plymouth isn't active
 
4
if ! plymouth --ping > /dev/null 2>&1
 
5
then
 
6
        return
 
7
fi
 
8
 
 
9
log_begin_msg_post ()
 
10
{
 
11
        /usr/bin/plymouth update --status="${@}" || true
 
12
 }
 
13
 
 
14
log_end_msg_post ()
 
15
{
 
16
        :
 
17
}
 
18
 
 
19
log_action_begin_msg_post ()
 
20
{
 
21
        /usr/bin/plymouth update --status="${@}" || true
 
22
}
 
23
 
 
24
log_action_end_msg_post ()
 
25
{
 
26
        :
 
27
}
 
28
 
 
29
log_action_msg_post ()
 
30
{
 
31
        /usr/bin/plymouth update --status="${@}" || true
 
32
}
 
33
 
 
34
log_daemon_msg_post ()
 
35
{
 
36
        /usr/bin/plymouth update --status="${@}" || true
 
37
}