#!/bin/sh
if pidof oscam-emu >/dev/null; then
echo "check oscam"
else
echo "start oscam"
/var/bin/oscam-emu -b -c /var/oscam_config
fi
