Ignore:
Timestamp:
11/21/09 12:58:51 (3 years ago)
Author:
tschmitt
Message:
  • Linbofs:
    • linbo_cmd.sh, start(): das Beenden der ctorrent-Prozesse wurde an eine frühere Stelle im Startablauf verschoben.
    • init.sh: o neuer Parameter autostart=<int>

autostart=0 unterdrückt generally jegliche Autostart-Definition in der start.conf,
autostart=<nr> setzt den Autostart für das OS an Position <nr> in der start.conf.
Autostarteinträge für andere OS werden unterdrückt.

  • Serverskripte:
    • rsync-post.sh: die Zeit für hochgeladene Image- und Torrent-Dateien wird per touch-Befehl auf die Serverzeit gesetzt, andernfalls verweigert Bittorrent den Dienst, falls die hochgeladenen Dateien eine Erstellungszeit in der Zukunft haben.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/linuxmuster-linbo/branches/testing/linbo/linbo_cmd.sh

    r565 r580  
    598598  return 1 
    599599 fi 
     600 # kill torrents if any 
     601 ps w | grep ctorrent | grep -v grep &> /dev/null && killall -9 ctorrent 
    600602 
    601603 # No more timer interrupts 
     
    609611 
    610612 umount /mnt 2>/dev/null 
    611  # kill torrents if any 
    612  ps w | grep ctorrent | grep -v grep && { killall ctorrent; sleep 3; } 
    613613 sendlog 
    614614 umount /cache || umount -l /cache 2>/dev/null 
Note: See TracChangeset for help on using the changeset viewer.