diff options
author | Thomas Bächler <thomas@archlinux.org> | 2010-01-12 21:31:52 +0100 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2010-01-12 21:31:52 +0100 |
commit | 2538c6ce3382a394524d8a0f6a545f1a9f86ddbf (patch) | |
tree | 1b3f144a50f1517f84e2604ca3f31b9409f609d8 /init | |
parent | 9ca9d2fbf0af1f37678fb9835045141ac0cfc049 (diff) | |
download | mkinitcpio-2538c6ce3382a394524d8a0f6a545f1a9f86ddbf.tar.gz mkinitcpio-2538c6ce3382a394524d8a0f6a545f1a9f86ddbf.tar.xz |
Replace custom minips with busybox pidof
Diffstat (limited to 'init')
-rw-r--r-- | init | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -101,7 +101,7 @@ if [ -f "/message" ]; then fi #Special handling if udev is running -udevpid=$(/bin/minips -C udevd -o pid=) +udevpid=$(/bin/pidof udevd) if [ -n "${udevpid}" ]; then /bin/kill -9 ${udevpid} > /dev/null 2>&1 /bin/sleep 0.01 |