@reus1972 & @ tomyslav
tomyslav hat mir die Arbeit abgenommen und die Zeile rot markiert.
Einfach in die betreffende Stelle einfügen, die beigefügten Dateien wie beschrieben auch.
hat bei mir auf Anhieb funktioniert.

s#!/bin/sh
# KW_STARTNEUTRINO_003

if [ -e /var/etc/.rdate ]; then
rdate time.fu-berlin.de
fi

if [ -e /var/etc/.dimmer ]; then
( sleep 20; dimmer ) &
fi

if [ -e /var/etc/.logomask ]; then
( sleep 20; logomask ) &
fi

if [ -e /var/etc/.clock ]; then
( sleep 20 ; clock ) &
fi

if [ -e /proc/clock ]; then
sectionsd -tc
else
sectionsd
fi

timerd

[ -e /var/etc/.tuxcald ] && tuxcald &

/var/plugins/operations ****server_start &

/var/plugins/operations camd_init &

if [ -e /var/etc/.pmt_update ] ; then
zapit -u
else
zapit
fi;

controld

if [ -e /var/bin/nhttpd ]; then
/var/bin/nhttpd
else
/bin/nhttpd
fi
bmp_show /var/tuxbox/boot/logo-lcd2.bmp &
/var/plugins/operations sect_renice &
/var/plugins/operations epg_reinit &

if [ -e /var/plugins/woltimer/.wol_auto ] ; then
sleep 40 && /var/plugins/woltimer/woltimerd &
fi;

[ -e /var/etc/.use_avia_gt_proc -a -e /var/etc/.aviacheck ] && /var/sbin/aviacheck &

if [ -e /var/etc/.start_softstandby ] ; then
nhttpd_port=`sed -n "s/WebsiteMain\.port=//p" /var/tuxbox/config/nhttpd.conf`
(sleep 20; wget -Y off -q -O /dev/null http://localhost:$nhttpd_port/control/standby?on) &
fi

KEEP_ALIVE=1
while expr $KEEP_ALIVE != 0 > /dev/null
do
neutrino -u -f
KEEP_ALIVE=$?
done

pzapit -kill

[ ! -e /tmp/.config_stop ] && /var/plugins/operations camd_exit &

[ -e /tmp/tuxmaild.pid ] && kill -term $( cat /tmp/tuxmaild.pid )

i=50
while expr $i != 0 > /dev/null
do
if [ ! -e /tmp/.config_stop ] && pidof controld > /dev/null; then echo "Waiting for controld (max. $i seconds)"
elif pidof timerd > /dev/null; then echo "Waiting for timerd (max. $i seconds)"
elif pidof zapit > /dev/null; then echo "Waiting for zapit (max. $i seconds)"
elif pidof tuxmaild > /dev/null; then echo "Waiting for tuxmaild (max. $i seconds)"
else break;
fi
i=`expr $i - 1`
sleep 1

done

if [ -e /tmp/.config_stop ]; then
if pidof zapit > /dev/null; then
killall -9 zapit
fi
i=1
while expr $i != 2 > /dev/null
do
msgbox title="Configs einspielen" msg="Bitte jetzt Config-Dateien einspielen" select="moment,reboot" timeout=999 size=32
i=$?
killall -9 msgbox
done
/var/plugins/operations ex_kill
reboot
exit 0
fi

if [ -e /tmp/.reboot ] ; then
reboot
else
halt
fi