Hello
I'm needing to reset my CAM periodically, and in order to do this I need to check it's status from outside VDR.
I've been doing the following, which is not ideal: if [ $((`tail -n $LINES /var/log/messages | grep 'vdr:' | grep 'ERROR' | grep 'CI' | wc -l`)) = 0 ] to test for: "May 22 00:49:45 freddy vdr: [9061] ERROR: can't write to CI adapter on device 1: Input/output error " messages
and then: "while [ $((`tail -n $LINES /var/log/messages | grep 'dvb_ca adapter 1: DVB CAM detected and initialised successfully' | wc -l`)) = 0 ]" to test it's recovered
Does anyone have any better suggestions???