99-plymouth 515 B

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