From bc6eae15abe6e5e7b7b48b5b0bda2c30e8614ab9 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 23 Jul 2013 12:26:06 +0200 Subject: [PATCH] init.sh: don't check for systemd-udevd in lower version branch --- modules.d/99base/init.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules.d/99base/init.sh b/modules.d/99base/init.sh index f228a3a6..34be478f 100755 --- a/modules.d/99base/init.sh +++ b/modules.d/99base/init.sh @@ -278,8 +278,8 @@ if [ $UDEVVERSION -lt 168 ]; then udevadm control --stop-exec-queue HARD="" - while pidof systemd-udevd >/dev/null 2>&1; do - for pid in $(pidof systemd-udevd); do + while pidof udevd >/dev/null 2>&1; do + for pid in $(pidof udevd); do kill $HARD $pid >/dev/null 2>&1 done HARD="-9"