summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepoman/bin/torrent-creator6
1 files changed, 4 insertions, 2 deletions
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