From dbdbdbbeb3b3fcd8d8f1ae51b95db8a99ac5e829 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 9 Nov 2006 21:43:04 +0000 Subject: fix for multiple extra commands in init scripts using rc.common git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5488 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/default/etc/rc.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/base-files/default/etc/rc.common') 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;; -- cgit v1.2.3