Browse Source

[PATCH 07/50] Get rid of `` subprocess expansion when killing udevd.

$() subprocess expansion is so much easier to read.
master
Victor Lowther 16 years ago committed by Dave Jones
parent
commit
8b691309de
  1. 2
      init

2
init

@ -101,7 +101,7 @@ if [ -x $NEWROOT/usr/sbin/load_policy ]; then @@ -101,7 +101,7 @@ if [ -x $NEWROOT/usr/sbin/load_policy ]; then
fi

# kill off udev
kill `pidof udevd`
kill $(pidof udevd)

[ -x /bin/plymouth ] && plymouth --newroot=$NEWROOT


Loading…
Cancel
Save