RalfFriedl
IPPF-Urgestein
- Mitglied seit
- 22 Apr 2007
- Beiträge
- 12,343
- Punkte für Reaktionen
- 1
- Punkte
- 0
Es ist die Frage, ob wir rc.custum synchron oder asynchron starten wollen. Man kann auch sagen, wer sich da eine Endlosschleife einträgt, oder von FritzLoad eintragen lässt, hat Pech gehabt.
Ansonsten, für asynchron sollte es so aussehen:
Oder so, damit hat man auch Logging.:
Ansonsten, für asynchron sollte es so aussehen:
Code:
Index: make/mod/files/root/etc/init.d/rc.mod
===================================================================
--- make/mod/files/root/etc/init.d/rc.mod (revision 7011)
+++ make/mod/files/root/etc/init.d/rc.mod (working copy)
@@ -61,7 +61,11 @@
#compat (may be removed later):
[ -r /tmp/flash/rc.custom ] && mv /tmp/flash/rc.custom /tmp/flash/mod/rc.custom
- [ -r /tmp/flash/mod/rc.custom ] && log "$(. /tmp/flash/mod/rc.custom)"
+ if [ -r /tmp/flash/mod/rc.custom ]; then
+ echo -n "Starting rc.custom ... "
+ sh /tmp/flash/mod/rc.custom 0</dev/null 1>/dev/null 2>&1 &
+ echo "done."
+ fi
touch /tmp/.modstarted
Code:
Index: make/mod/files/root/etc/init.d/rc.mod
===================================================================
--- make/mod/files/root/etc/init.d/rc.mod (revision 7011)
+++ make/mod/files/root/etc/init.d/rc.mod (working copy)
@@ -61,7 +61,11 @@
#compat (may be removed later):
[ -r /tmp/flash/rc.custom ] && mv /tmp/flash/rc.custom /tmp/flash/mod/rc.custom
- [ -r /tmp/flash/mod/rc.custom ] && log "$(. /tmp/flash/mod/rc.custom)"
+ if [ -r /tmp/flash/mod/rc.custom ]; then
+ echo -n "Starting rc.custom ... "
+ sh /tmp/flash/mod/rc.custom 0</dev/null 1>/var/log/rc.custom.log 2>&1 &
+ echo "done."
+ fi
touch /tmp/.modstarted