aboutsummaryrefslogtreecommitdiffstats
path: root/package/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-11-09 21:43:04 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-11-09 21:43:04 +0000
commit1dc538c39a98a51653671cdb3ac9837922e30e2f (patch)
treeb278196220d3d9bbf9477ce31ecbc7d1ddfacb49 /package/base-files
parent7ea7acad21ee1a065684125bffa4079ed86cac3d (diff)
downloadupstream-1dc538c39a98a51653671cdb3ac9837922e30e2f.tar.gz
upstream-1dc538c39a98a51653671cdb3ac9837922e30e2f.tar.bz2
upstream-1dc538c39a98a51653671cdb3ac9837922e30e2f.zip
fix for multiple extra commands in init scripts using rc.common
SVN-Revision: 5488
Diffstat (limited to 'package/base-files')
-rwxr-xr-xpackage/base-files/default/etc/rc.common2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/default/etc/rc.common b/package/base-files/default/etc/rc.common
index 6066afbd55..7180b0f7fa 100755
--- a/package/base-files/default/etc/rc.common
+++ b/package/base-files/default/etc/rc.common
@@ -67,7 +67,7 @@ action="$2"
cmds=
for cmd in $EXTRA_COMMANDS; do
- cmds="$cmd) $cmd;;"
+ cmds="${cmds:+$cmds$N}$cmd) $cmd;;"
done
eval "case \"\$action\" in
start) start;;