diff options
author | ramon <ramongomez@us.es> | 2011-02-22 18:11:39 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2011-02-22 18:11:39 +0000 |
commit | 2b2144fa45cf77b6c3f4456f3364fd9b0430cba5 (patch) | |
tree | 3dd45a1573fd9f28ec03aa9f1b573ad3409fa92b /repoman/bin | |
parent | 08b941fc516fd39c8ae76b6eb0aa9811e3428a9a (diff) |
El script de repositorio {{{torrent-creator}}} no trata las imágenes que están bloqueadas.
Refs #298.
git-svn-id: https://opengnsys.es/svn/trunk@1471 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'repoman/bin')
-rwxr-xr-x | repoman/bin/torrent-creator | 6 |
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 |