diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-03 12:45:15 -0700 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2009-08-03 12:45:15 -0700 |
commit | 9b43beb2965812a811dd266a30b2b50f589fd455 (patch) | |
tree | 6e305a1b224c3ba19ad253e8088232cbb25861e4 /rc.single | |
parent | 0dd360f4d0c880a0e9b1a18354196740626ad123 (diff) |
Fix array syntax for DAEMONS loop
Whoops!
Noticed-by: Florian Pritz <f-p@gmx.at>
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'rc.single')
-rwxr-xr-x | rc.single | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ if [ "$PREVLEVEL" = "3" -o "$PREVLEVEL" = "5" ]; then # Find daemons NOT in the DAEMONS array. Shut these down first if [ -d /var/run/daemons ]; then for daemon in $(/bin/ls -1t /var/run/daemons); do - if ! in_array $daemon ${DAEMONS}; then + if ! in_array $daemon ${DAEMONS[@]}; then stop_daemon $daemon fi done |