Sascha204
Ist gelegentlich hier
- Registriert
- 14. August 2015
- Beiträge
- 78
- Reaktionspunkte
- 12
- Punkte
- 28
Hallo
wie kann ich ein scribt starten lassen ,wenn watchdog startet wenn Oscam nicht läuft?
Bekomme es einfach nicht hin?
wie kann ich ein scribt starten lassen ,wenn watchdog startet wenn Oscam nicht läuft?
Bekomme es einfach nicht hin?
#! /bin/sh
while sleep 30
do
if sudo ps x | grep -v grep | grep -c oscam -b
then
echo "oscam is running"
else
echo `date` " oscam is not running... restarting !!" >> /var/log/watchdog.log
/usr/local/bin/oscam -b
/etc/pushover.sh
fi
done
while sleep 30
do
if sudo ps x | grep -v grep | grep -c oscam -b
then
echo "oscam is running"
else
echo `date` " oscam is not running... restarting !!" >> /var/log/watchdog.log
/usr/local/bin/oscam -b
/etc/pushover.sh
fi
done