AW: ECM's werden abgefragt obwohl Receiver im standbay
Ja, den Nachtrag hab ich gelesen. Ich hab Notepad++ verwendet und die box neu gebootet.
Hier die Standby.on und Standby.off
Standby.on
#!/bin/sh
# Version 0.4
aviaext --iec-off
if [ -e /var/etc/.stb_off_camd ]; then
/var/plugins/operations camd_stop &
fi
if [ -e /var/etc/.lcdwetter ] ; then
touch /tmp/.lcdwetter
/var/plugins/tuxwet/lcdwetter &
elif [ -e /var/etc/.lcd_stbclock_analog ]; then
touch /tmp/lcd.locked
analclock &
elif [ -e /var/etc/.lcd_stbclock_bcd ]; then
touch /tmp/lcd.locked
bcdclock &
elif [ -e /var/etc/.lcd_stbclock_animation ]; then
touch /tmp/lcd.locked
aniplay /var/tuxbox/config/neutrino/icons/lcd.ani &
fi
if [ -e /var/etc/.stb_off_sectionsd ]; then
touch /tmp/.daemon_h &
if pidof daemon_h > /dev/null; then killall daemon_h; fi &
touch /tmp/.daemon_h &
sleep 10 && killall -9 sectionsd &
fi
if [ -e /var/etc/.stb_off_tuxmaild ]; then
kill -12 `pidof tuxmaild` &
if [ -e /tmp/tuxcald.pid ]; then kill -usr2 $(cat /tmp/tuxcald.pid); fi
fi
if [ -e /dev/ide/host0/bus0/target0/lun0/disc ]; then
hdparm -y /dev/ide/host0/bus0/target0/lun0/disc
fi
wget -q -Y off -O /tmp/aktueller_kanal
Sie müssen registriert sein, um Links zu sehen.
pzapit 1 1
Standby.off
#!/bin/sh
# Version 0.4
aviaext --iec-on
if [ -e /proc/clock ] || pidof ntpd > /dev/null; then
START="sectionsd -tc"
else
START=sectionsd
fi
if [ -e /var/etc/.stb_off_camd ]; then
/var/plugins/operations camd_start
/var/plugins/operations rezap &
fi
if [ -e /var/etc/.stb_off_sectionsd ]; then
if ! pidof sectionsd > /dev/null; then $START; fi &
[ -e /tmp/.daemon_h ] && rm /tmp/.daemon_h
fi
if [ -e /var/etc/.stb_off_tuxmaild ]; then
kill -10 `pidof tuxmaild` &
if [ -e /tmp/tuxcald.pid ]; then kill -usr1 $(cat /tmp/tuxcald.pid); fi
if [ -e /tmp/tuxcald.pid ]; then kill -hup $(cat /tmp/tuxcald.pid); fi
fi
if [ -e /tmp/.lcdwetter ] ; then
rm -f /tmp/.lcdwetter
elif pidof analclock > /dev/null ; then
killall analclock
rm -f /tmp/lcd.locked
elif pidof bcdclock > /dev/null ; then
killall bcdclock
rm -f /tmp/lcd.locked
elif pidof aniplay > /dev/null ; then
killall aniplay
rm -f /tmp/lcd.locked
fi
wget -q -Y off -O /dev/null
Sie müssen registriert sein, um Links zu sehen.
/tmp/aktueller_kanal`
rm /tmp/aktueller_kanal
Grüße
Raffzahn