From 2b2144fa45cf77b6c3f4456f3364fd9b0430cba5 Mon Sep 17 00:00:00 2001 From: ramon Date: Tue, 22 Feb 2011 18:11:39 +0000 Subject: El script de repositorio {{{torrent-creator}}} no trata las imágenes que están bloqueadas. Refs #298. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: https://opengnsys.es/svn/trunk@1471 a21b9725-9963-47de-94b9-378ad31fedc9 --- repoman/bin/torrent-creator | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'repoman') diff --git a/repoman/bin/torrent-creator b/repoman/bin/torrent-creator index 19dd63fe..8a14e3c6 100755 --- a/repoman/bin/torrent-creator +++ b/repoman/bin/torrent-creator @@ -25,8 +25,10 @@ pushd $OGIMG >/dev/null # Procesar ficheros de imágenes. trap 'echo "`date` : Proceso interrumpido" >> $LOGFILE; exit ' 1 2 3 6 9 15 for IMG in *.{img,pgz}; do - # Saltar al siguiente si no existe el fichero. - [ -f "$IMG" ] || continue + # Saltar al siguiente si la imagen está bloqueada o si no existe el fichero. + if [ -f "$IMG.lock" -o ! -f "$IMG" ]; then + continue + fi # Comprobar si ya existe el fichero Torrent para esa imagen. TORRENT="$IMG.torrent" if [ -f "$TORRENT" ]; then -- cgit v1.2.3-18-g5258