summaryrefslogtreecommitdiff
path: root/rc.single
diff options
context:
space:
mode:
authorThomas Bächler <thomas@archlinux.org>2006-12-16 22:03:29 +0000
committerThomas Bächler <thomas@archlinux.org>2006-12-16 22:03:29 +0000
commit9b58da29d7ce93bf3dc258a28d2fae00eb181f7e (patch)
tree6cdc8ad24e4146b32d31355a08ce6642337f9773 /rc.single
parent567edd5aa95d5728b50f9fff6d71c368a7f3966a (diff)
rc.sysinit, rc.shutdown:
- Code cleanup - Added "verbose" commandline option for debugging - Fixed #5968 - Fixed #4648
Diffstat (limited to 'rc.single')
-rwxr-xr-xrc.single4
1 files changed, 2 insertions, 2 deletions
diff --git a/rc.single b/rc.single
index 00b7da6..edd20af 100755
--- a/rc.single
+++ b/rc.single
@@ -36,14 +36,14 @@ if [ "$PREVLEVEL" != "N" ]; then
if [ -x /etc/start_udev -a -d /sys/block ]; then
# We have a start_udev script and /sys appears to be mounted, use UDev
- status "Starting UDev Daemon" /etc/start_udev
+ status "Starting UDev Daemon" /etc/start_udev
if [ "`pidof -o %PPID /sbin/udevd`" ]; then
# If an old udevd is kicking around, we'll have to remount pts and shm
umount /dev/shm /dev/pts >/dev/null 2>&1
mount /dev/pts
mount /dev/shm
fi
- else
+ else
# Static /dev, our last resort
status "Using static /dev filesystem" /bin/true
fi