Installscript-shutdown-cmds
Aus VDR Wiki
(Unterschied zwischen Versionen)
K (→Beschreibung) |
K |
||
Zeile 9: | Zeile 9: | ||
START="1" # 0 = inactiv / 1 = activ | START="1" # 0 = inactiv / 1 = activ | ||
− | ENTRY=$"Beschreibung" # eintrag für das admin plugin <description> | + | ENTRY=$"Beschreibung" # eintrag für das [[admin-plugin]] <description> |
WAITING="15" # wartezeit (shutdown -> 15min -> shutdown) | WAITING="15" # wartezeit (shutdown -> 15min -> shutdown) | ||
Zeile 36: | Zeile 36: | ||
#!/bin/sh | #!/bin/sh | ||
# | # | ||
− | # shutdown | + | # example shutdown wait script |
START="1" | START="1" | ||
Zeile 56: | Zeile 56: | ||
#!/bin/sh | #!/bin/sh | ||
# | # | ||
− | # shutdown | + | # example shutdown wait script |
START="1" | START="1" |
Version vom 9. Dezember 2005, 08:12 Uhr
Beschreibung
In ../shutdown-cmds befinden sich Scripte, welche den Shutdown Prozess verzögern.
Format (Datei):
<NAME>.run
Format (Head):
START="1" # 0 = inactiv / 1 = activ ENTRY=$"Beschreibung" # eintrag für das admin-plugin <description> WAITING="15" # wartezeit (shutdown -> 15min -> shutdown)
Das ganze kann im admin-plugin aktiviert bzw deaktiviert werden. (0 = inactiv, 1 = activ)
Alles weitere sollte im syslog ersichtlich sein. (vorrausgesetzt $VDR_LOG -gt 0)
'START'='0' -> '../shutdown-cmds/nfs.run' 'START'='1' -> '../shutdown-cmds/procs.run' 'START'='1' -> '../shutdown-cmds/queuehandler.run' 'START'='0' -> '../shutdown-cmds/samba.run' 'START'='0' -> '../shutdown-cmds/ssh.run' 'START'='0' -> '../shutdown-cmds/streamdev.run' 'START'='0' -> '../shutdown-cmds/users.run' ... shutdown.sh -- stop shutdown, because vdrrip running... shutdown.sh -- waiting period 15 minutes up to the next shutdown...
Bsp (1)
Hier wird der Shutdown um 15min verschoben, falls das vdrrip-plugin noch am wandeln ist.
#!/bin/sh # # example shutdown wait script START="1" ENTRY=$"vdrrip running" WAITING="15" if [ -s "$VDR_CONFIG/plugins/queue.vdrrip" ] ; then MESSAGE=$"stop shutdown, vdrrip running" # message im syslog + svdrp EXITCODE=1 fi
Bsp (2)
Hier wird der Shutdown um 15min verschoben, falls $CHECKPROCS activ sind.
#!/bin/sh # # example shutdown wait script START="1" ENTRY=$"proc(s) running" WAITING="15" CHECKPROCS="tvm2vdr.pl infosatepg cutinplace transcode vcdimager mencoder tosvcd lame noad wget rtorrent" for i in $CHECKPROCS ; do if [ -n "$(pidof $i)" -o -n "$(pidof -x $i)" ] ; then MESSAGE=$"stop shutdown, $i running" EXITCODE=1 fi done