Welcome!

Welcome to Satlover forums, full of great people, ideas and excitement.

Please register if you would like to take part. link..

Register Now

Alert: Don't Use Hotmail Email Accounts for registration

Collapse

Before Access to all Forums and Trial accounts you must need to activate your account Email address

Chiarimento su script

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • giua
    Experienced Member
    • Mar 2011
    • 373

    Chiarimento su script

    In rete ho trovato un noto script che mi permette di mettere in standby il DM500 dopo un riavvio (Nel mio caso utile dopo un blackout).
    Ho seguito le giuste configurazioni ma non ho avuto nessun risultato.

    Su var/script/ ho trasferito il file chiamato auto_standby.sh e permessi 755 con il seguente codice:

    Code:
    #!/bin/sh
    
    PSW="dreambox"
    TMPFILE="/tmp/tmpWebIF.standby"
    
    if [ "$1" = "" ]; then
    sleep 30
    else
    sleep $1
    fi
    
    wget -O $TMPFILE -q http://root:dreambox@localhost/cgi-bin/admin?command=standby
    rm $TMPFILE
    
    exit 0
    Mentre su var/etc ho creato il file init, permessi 755 e ho inserito queste righe:
    Code:
    #!/bin/sh
    /var/script/auto_standby.sh 40 &
    Dove sta l'errore? vi ringrazio.
Working...