Jelajahi Sumber

need to fork startup scripts, otherwise init got exit calls and reboots the system

Waldemar Brodkorb 13 tahun lalu
induk
melakukan
0a56716f1e
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      package/base-files/src/etc/init.d/rcS

+ 1 - 1
package/base-files/src/etc/init.d/rcS

@@ -4,7 +4,7 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
 	grep '^#INIT ' /etc/init.d/* | \
 	    sort -nk2 | \
 	    while read line; do
-		/bin/sh ${line%%:*} autostart 2>&1
+		exec sh ${line%%:*} autostart 2>&1
 	    done
 	test -e /etc/init.d/boot.local && (/bin/sh /etc/init.d/boot.local) 2>&1
 } | logger -s -p 6 -t '' &