Installscript-shutdown-cmds
Aus VDR Wiki
(Unterschied zwischen Versionen)
(→Beschreibung) |
Hulk (Diskussion | Beiträge) K (Schützte „Installscript-shutdown-cmds“: Weblink-Spam ([edit=autoconfirmed] (unbeschränkt) [move=autoconfirmed] (unbeschränkt))) |
||
(10 dazwischenliegende Versionen von 6 Benutzern werden nicht angezeigt) | |||
Zeile 16: | Zeile 16: | ||
''Oder, auf der Kommandozeile.'' | ''Oder, auf der Kommandozeile.'' | ||
− | shell> $PREFIX/etc/vdr/admin/dialog.sh | + | shell> [[Installscript-dialog.sh|$PREFIX/etc/vdr/admin/dialog.sh]] |
[[Bild:installscript-admin-shutdown-cmds.jpg|thumb|none|''kurze beschreibung'']] | [[Bild:installscript-admin-shutdown-cmds.jpg|thumb|none|''kurze beschreibung'']] | ||
Zeile 46: | Zeile 46: | ||
if [ -s "$VDR_CONFIG/plugins/vdrrip/queue.vdrrip" ] ; then | if [ -s "$VDR_CONFIG/plugins/vdrrip/queue.vdrrip" ] ; then | ||
− | MESSAGE=$"stop shutdown, vdrrip running" | + | MESSAGE=$"stop shutdown, vdrrip running" |
EXITCODE=1 | EXITCODE=1 | ||
fi | fi | ||
Zeile 70: | Zeile 70: | ||
MESSAGE=$"stop shutdown, $i running" | MESSAGE=$"stop shutdown, $i running" | ||
EXITCODE=1 | EXITCODE=1 | ||
+ | break | ||
fi | fi | ||
done | done | ||
</pre> | </pre> | ||
− | }}[[Kategorie:Installscript]] | + | }} |
+ | |||
+ | ==Bsp (3)== | ||
+ | Hier wird der Shutdown um 15min verschoben, falls Verbindungen / Ports offen sind ([[streamdev-plugin]]). | ||
+ | |||
+ | {{Box Datei| ../shutdown-cmds/streamdev.cmd | | ||
+ | <pre> | ||
+ | #!/bin/sh | ||
+ | # | ||
+ | # example shutdown wait script | ||
+ | |||
+ | START="0" | ||
+ | ENTRY=$"streamdev client(s) connected" | ||
+ | WAITING="15" | ||
+ | |||
+ | port1=($(grep -s ^streamdev-server.ServerPort "${VDR_CONFIG}/setup.conf")) | ||
+ | port2=($(grep -s ^streamdev-server.HTTPServerPort "${VDR_CONFIG}/setup.conf")) | ||
+ | |||
+ | for i in ${port1[2]:-2004} ${port2[2]:-3000} ; do | ||
+ | count=$(netstat -n | egrep -c ^tcp.*:$i[[:space:]]) | ||
+ | if [ $count -ne 0 ] ; then | ||
+ | MESSAGE=$"stop shutdown, $count streamdev client(s) connected" | ||
+ | EXITCODE=1 | ||
+ | break | ||
+ | fi | ||
+ | done | ||
+ | </pre> | ||
+ | }} | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | [[Kategorie:Installscript]] |
Aktuelle Version vom 14. Oktober 2009, 04:40 Uhr
Inhaltsverzeichnis |
[Bearbeiten] Beschreibung
In ../shutdown-cmds befinden sich Scripte, welche den Shutdown Prozess verzögern.
Format (Datei):
<NAME>.cmd
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)
Oder, auf der Kommandozeile.
shell> $PREFIX/etc/vdr/admin/dialog.sh
Alles weitere sollte im syslog ersichtlich sein. (vorrausgesetzt $VDR_LOG -gt 0)
'START'='1' -> '../shutdown-cmds/procs.cmd' 'START'='1' -> '../shutdown-cmds/queuehandler.cmd' 'START'='0' -> '../shutdown-cmds/samba.cmd' 'START'='0' -> '../shutdown-cmds/ssh.cmd' 'START'='0' -> '../shutdown-cmds/streamdev.cmd' 'START'='0' -> '../shutdown-cmds/users.cmd' ... shutdown.sh -- stop shutdown, because vdrrip running... shutdown.sh -- waiting period 15 minutes up to the next shutdown...
[Bearbeiten] 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/vdrrip/queue.vdrrip" ] ; then MESSAGE=$"stop shutdown, vdrrip running" EXITCODE=1 fi
[Bearbeiten] 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 break fi done
[Bearbeiten] Bsp (3)
Hier wird der Shutdown um 15min verschoben, falls Verbindungen / Ports offen sind (streamdev-plugin).
#!/bin/sh # # example shutdown wait script START="0" ENTRY=$"streamdev client(s) connected" WAITING="15" port1=($(grep -s ^streamdev-server.ServerPort "${VDR_CONFIG}/setup.conf")) port2=($(grep -s ^streamdev-server.HTTPServerPort "${VDR_CONFIG}/setup.conf")) for i in ${port1[2]:-2004} ${port2[2]:-3000} ; do count=$(netstat -n | egrep -c ^tcp.*:$i[[:space:]]) if [ $count -ne 0 ] ; then MESSAGE=$"stop shutdown, $count streamdev client(s) connected" EXITCODE=1 break fi done