diff options
author | ramon <ramongomez@us.es> | 2012-12-12 13:24:18 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2012-12-12 13:24:18 +0000 |
commit | 9204a04f180c6bf1d699613bf70f0e1e144c0942 (patch) | |
tree | ba72952d2881f39c70e384c1ade065a5127a6285 /admin/Interface/RestaurarSoftIncremental | |
parent | 1a632ba4a425de1b9989b340d5ab61c1d7df5161 (diff) |
Versión 1.0.5, #565: Integrar cambios en comandos para crear y restaurar imágenes incrementales.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@3463 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Interface/RestaurarSoftIncremental')
-rwxr-xr-x | admin/Interface/RestaurarSoftIncremental | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/admin/Interface/RestaurarSoftIncremental b/admin/Interface/RestaurarSoftIncremental index f1afc5be..58f846f5 100755 --- a/admin/Interface/RestaurarSoftIncremental +++ b/admin/Interface/RestaurarSoftIncremental @@ -9,7 +9,7 @@ # $1 Número de disco # $2 Número de particion # $3 Nombre canónico de la imagen básica (sin extensión) -# $4 Dirección del repositorio (Si es 0.0.0.0 es caché) +# $4 Dirección del repositorio # $5 Nombre canónico del software incremental (sin extensión) # $5 Es una cadena "nnnn" tipo flags que codifica varios parametros. # Tiene el formato "nnnn" donde "n" vale 0 ó 1. @@ -34,7 +34,7 @@ fi DISCO=$1 - PARTICION=$2 + NPART=$2 NOMBREIMG=$3 IPREPOSITORIO=$4 NOMBREIMGINC=$5 @@ -54,6 +54,17 @@ #___________________________________________________________________ source /opt/opengnsys/interfaceAdm/ImagenesSincronizadas.lib + + if [ -z $SISTEMAFICHERO ]; then + case "$TIPOPARTICION" in + 7) + SISTEMAFICHERO="Windows" + ;; + 83) + SISTEMAFICHERO="Linux" + ;; + esac + fi #___________________________________________________________________ # # Proceso @@ -98,6 +109,7 @@ # Restauración de la imagen incremental echo "Sincronizando imagen entre $ORIGEN y $DESTINO" | tee -a $OGLOGSESSION $OGLOGFILE restaurarImagen $ORIGEN $DESTINO $SISTEMAFICHERO 1 + restauraListaAcl $ORIGEN $DESTINO $SISTEMAFICHERO $DISCO $NPART RETVAL=$? exit $RETVAL fi @@ -160,6 +172,7 @@ OP_DELETE="" echo "Sincronizando imagen entre $ORIGEN y $DESTINO" | tee -a $OGLOGSESSION $OGLOGFILE restaurarImagen $ORIGEN $DESTINO $SISTEMAFICHERO 2 + restauraListaAcl $ORIGEN $DESTINO $SISTEMAFICHERO $DISCO $NPART RETVAL=$? if [ $RETVAL -ne 0 ]; then exit $OG_ERR_IMAGE @@ -169,4 +182,4 @@ # Retorno #___________________________________________________________________ - exit 0
\ No newline at end of file + exit 0 |