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/share/rsync-post.sh

    r518 r580  
    4343   timage="$(btshowmetainfo "$LINBODIR/${FILE##*/}" | grep ^"file name" | awk '{ print $3 }')" 
    4444   echo "Torrent file for $timage detected. Restarting bittorrent service." >&2 
     45   # sync time for image and torrent files otherwise bittorrent gets confused 
     46   # if uploaded torrent file time is in future 
     47   touch "${timage}*" 
    4548   /etc/init.d/linbo-bittorrent restart >&2 
    4649   /etc/init.d/bittorrent restart >&2 
Note: See TracChangeset for help on using the changeset viewer.