diff options
author | Roman Kyrylych <roman@archlinux.org> | 2008-03-09 17:22:11 +0200 |
---|---|---|
committer | Roman Kyrylych <roman@archlinux.org> | 2008-03-09 17:22:11 +0200 |
commit | 7526db5d0405188fee94d16fbcfbdf13a17e6a45 (patch) | |
tree | 27d1211260b3c7cf35a28aaeef61653e0a0f2f9d /rc.single | |
parent | 2c9681f461a0cde98a88de65e232369df68ed859 (diff) |
More full-path fixes
Signed-off-by: Roman Kyrylych <roman@archlinux.org>
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |