mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-25 00:20:23 +07:00
plymouth: use PID file to detect whether ply is running
This commit is contained in:
parent
f695b3b09b
commit
9408a2d295
4
TODO
4
TODO
@ -33,6 +33,10 @@ F15:
|
||||
|
||||
* selinux issue http://people.gnome.org/~cosimoc/selinux.jpg
|
||||
|
||||
* do not print errors when random seed is not around
|
||||
|
||||
* fix alsa mixer restore to not print error when no config is stored
|
||||
|
||||
Features:
|
||||
|
||||
* Find a way to replace /var/run, /var/lock directories with
|
||||
|
@ -4189,7 +4189,7 @@ bool nulstr_contains(const char*nulstr, const char *needle) {
|
||||
}
|
||||
|
||||
bool plymouth_running(void) {
|
||||
return access("/run/initramfs/plymouth", F_OK) >= 0;
|
||||
return access("/run/plymouth/pid", F_OK) >= 0;
|
||||
}
|
||||
|
||||
static const char *const ioprio_class_table[] = {
|
||||
|
@ -13,9 +13,9 @@ After=systemd-vconsole-setup.service udev-settle.service
|
||||
Before=systemd-ask-password-plymouth.service
|
||||
|
||||
# Dracut informs us with this flag file if plymouth is already running
|
||||
ConditionPathExists=!/run/initramfs/plymouth
|
||||
ConditionPathExists=!/run/plymouth/pid
|
||||
|
||||
[Service]
|
||||
ExecStart=/sbin/plymouthd --mode=boot
|
||||
ExecStart=/sbin/plymouthd --mode=boot --pid-file=/run/plymouth/pid
|
||||
ExecStartPost=-/bin/plymouth --show-splash
|
||||
Type=forking
|
||||
|
Loading…
Reference in New Issue
Block a user