=================================================================== RCS file: /cvs/openbsd/OpenBSDTorrents/regen.sh,v retrieving revision 1.6 retrieving revision 1.11 diff -u -r1.6 -r1.11 --- openbsd/OpenBSDTorrents/regen.sh 2005/05/02 22:49:21 1.6 +++ openbsd/OpenBSDTorrents/regen.sh 2011/03/31 03:31:53 1.11 @@ -1,5 +1,5 @@ #!/bin/sh -#$Id: regen.sh,v 1.6 2005/05/02 21:49:21 andrew Exp $ +#$RedRiver: regen.sh,v 1.10 2010/03/08 20:19:37 andrew Exp $ . /etc/OpenBSDTorrents.conf @@ -10,24 +10,51 @@ PID=`head -1 ${PIDFILE}` kill -0 ${PID} 2> /dev/null if [ $? -eq 0 ]; then - echo Already running + echo $0 Already running exit 1 fi fi echo $$ > ${PIDFILE} if [[ $1 != skip ]]; then + echo echo ${OBT_DIR_HOME}/MakeTorrents.pl $* ${OBT_DIR_HOME}/MakeTorrents.pl $* fi +echo echo ${OBT_DIR_HOME}/CurrentTorrents.pl ${OBT_DIR_HOME}/CurrentTorrents.pl -if [ $? != 253 ]; then - echo lftp -f ${OBT_DIR_HOME}/lftp.script - lftp -f ${OBT_DIR_HOME}/lftp.script +#if [ $? != 253 ]; then exit; fi - echo ${OBT_DIR_HOME}/ServerTorrents.pl - ${OBT_DIR_HOME}/ServerTorrents.pl -fi +echo +echo Removing old torrents +for f in `ls ${OBT_DIR_CUR_TORRENT}`; do + if [ ! -e ${OBT_DIR_TORRENT}/$f ]; then + rm ${OBT_DIR_CUR_TORRENT}/$f + fi +done + +echo +echo ${OBT_DIR_HOME}/ServerTorrents.pl +${OBT_DIR_HOME}/ServerTorrents.pl + +echo +echo lftp torrents to ${OBT_FTP_SERVER} +lftp -c "set ftp:ssl-allow no + open ftp://${OBT_FTP_USER}:${OBT_FTP_PASS}@${OBT_FTP_SERVER} + cd active + mirror -R -r -a -e /home/torrentsync/torrents/. + cd / + mirror -R -r -a /home/torrentsync/torrents/." + +sleep 60; + +echo +echo Starting new torrents +for f in `ls ${OBT_DIR_TORRENT}`; do + if [ ! -e ${OBT_DIR_CUR_TORRENT}/$f ]; then + ln -s ${OBT_DIR_TORRENT}/$f ${OBT_DIR_CUR_TORRENT}/$f + fi +done