aboutsummaryrefslogtreecommitdiff
path: root/rc.single
diff options
context:
space:
mode:
authorRoman Kyrylych <roman@archlinux.org>2008-03-09 17:22:11 +0200
committerRoman Kyrylych <roman@archlinux.org>2008-03-09 17:22:11 +0200
commit7526db5d0405188fee94d16fbcfbdf13a17e6a45 (patch)
tree27d1211260b3c7cf35a28aaeef61653e0a0f2f9d /rc.single
parent2c9681f461a0cde98a88de65e232369df68ed859 (diff)
downloadinitscripts-7526db5d0405188fee94d16fbcfbdf13a17e6a45.tar.xz
More full-path fixes
Signed-off-by: Roman Kyrylych <roman@archlinux.org>
Diffstat (limited to 'rc.single')
-rwxr-xr-xrc.single2
1 files changed, 1 insertions, 1 deletions
diff --git a/rc.single b/rc.single
index 9c940a5..38454f6 100755
--- a/rc.single
+++ b/rc.single
@@ -19,7 +19,7 @@ if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then
done
# find any leftover daemons and shut them down
if [ -d /var/run/daemons ]; then
- for daemon in $(ls /var/run/daemons); do
+ for daemon in $(/bin/ls /var/run/daemons); do
/etc/rc.d/$daemon stop
done
fi