summaryrefslogtreecommitdiffstats
path: root/repoman
diff options
context:
space:
mode:
authorramon <ramongomez@us.es>2017-10-10 09:13:50 +0000
committerramon <ramongomez@us.es>2017-10-10 09:13:50 +0000
commit01aef8db2ef9035d76f9b06140666746bbda7666 (patch)
tree6031a54b0c984c9ae3817801540b370993639d15 /repoman
parent2b1ed11692595333173c6567e1f23f2fc43a472b (diff)
#740: Crear ficheros de checksum y torrent para backups de disco completo.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5451 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'repoman')
-rwxr-xr-xrepoman/bin/torrent-creator4
1 files changed, 2 insertions, 2 deletions
diff --git a/repoman/bin/torrent-creator b/repoman/bin/torrent-creator
index dbeba758..958683ed 100755
--- a/repoman/bin/torrent-creator
+++ b/repoman/bin/torrent-creator
@@ -25,7 +25,7 @@ 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,diff} */*.{img,pgz,diff} ; do
+for IMG in *.{img,pgz,diff,dsk} */*.{img,pgz,diff,dsk} ; do
# Saltar al siguiente si la imagen está bloqueada o si no existe el fichero.
LOCKFILE="$IMG.lock"
if [ -f "$LOCKFILE" -o ! -f "$IMG" ]; then
@@ -62,6 +62,6 @@ for IMG in *.{img,pgz,diff} */*.{img,pgz,diff} ; do
# Modificación realizada en la corrección temporal de la incidencia #535
break
done
-
+
popd >/dev/null