Posts by linux72

    download erorr Der angeforderte URL /5.2/GigaBlue/gb800seplus/opendroid-5.2-gb800seplus-20150925_usb.zip wurde auf diesem Server nicht gefunden.

    #!/bin/sh


    CAMNAME="Mgcamd 1.38"


    remove_tmp () {
    rm -rf /tmp/*.info* /tmp/*.tmp* /tmp/*mgcamd*
    }


    case "$1" in
    start)
    echo "[SCRIPT] $1: $CAMNAME"
    remove_tmp
    /usr/bin/mgcamd_138 &
    ;;
    stop)
    echo "[SCRIPT] $1: $CAMNAME"
    killall -9 mgcamd_138
    remove_tmp
    ;;
    *)
    $0 stop
    exit 0
    ;;
    esac


    exit 0