diff options
author | ramon <ramongomez@us.es> | 2012-11-28 11:38:50 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2012-11-28 11:38:50 +0000 |
commit | 4329e85010531edeaca3d10a62241014b799345e (patch) | |
tree | 94c13c2d249f29557d89b21bc0c9a477487397b0 /admin/Interface/CrearSoftIncremental | |
parent | a0da76f5ea8c5f4cbcfef7510917448a909660eb (diff) |
Versión 1.0.5, #565: Integrar código del ticket:565 en rama de desarrollo.
git-svn-id: https://opengnsys.es/svn/branches/version1.0@3446 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Interface/CrearSoftIncremental')
-rwxr-xr-x | admin/Interface/CrearSoftIncremental | 127 |
1 files changed, 127 insertions, 0 deletions
diff --git a/admin/Interface/CrearSoftIncremental b/admin/Interface/CrearSoftIncremental new file mode 100755 index 00000000..f788635e --- /dev/null +++ b/admin/Interface/CrearSoftIncremental @@ -0,0 +1,127 @@ +#!/bin/bash +#___________________________________________________________________ +# +# CREAR IMAGEN INCREMENTAL +#___________________________________________________________________ +# +# Parámetros recibidos desde el cliente: +# +# $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é) +# $5 Nombre canónico de la imagen incremental (sin extensión) +# $6 Es una cadena "nnnn" tipo flags que codifica varios parametros. +# Tiene el formato "nnnn" donde "n" vale 0 ó 1. +# 1XXX: Borrar la imagen incremental del repositorio antes de crearla +# X1XX: Copiar imagen incremental también a la cache +# XX1X: Borrar previamente la imagen incremental de la cache antes de copiarla +# XXX1: No borrar archivos en destino +# El valor X indica que no importa el valor que tenga el dato +# $7 Ruta de origen de la Imagen (Carpeta) + +#___________________________________________________________________ +# +# Control parámetros +#___________________________________________________________________ + + PROG="$(basename $0)" + if [ $# -lt 6 ]; then + usage=" ndisco nparticion nombre_imagen_basica ip_repositorio nombre_imagen_incremental" + usage="$usage copiar_a_caché Borrar_cache_previamente Ruta_origen" + ogRaiseError $OG_ERR_FORMAT "$MSG_FORMAT: $PROG $usage" + exit $? + fi + + DISCO=$1 + PARTICION=$2 + NOMBREIMG=$3 + IPREPOSITORIO=$4 + NOMBREIMGINC=$5 + + flag=$6 + echo "flah:$flag">/tmp/log + BORRARIMG=${flag:0:1} + COPIACACHE=${flag:1:1} + BORRACACHE=${flag:2:1} + NOBORRACHIVOS=${flag:3:1} + + RUTAORIGEN=$7 +#___________________________________________________________________ +# +# Variables y configuración logs +#___________________________________________________________________ + + source /opt/opengnsys/interfaceAdm/ImagenesSincronizadas.lib + +#___________________________________________________________________ +# +# Lista de archivos a sincronizar +#___________________________________________________________________ + + TMPFILELIST="/tmp/_listatmp_" + FILELIST="/tmp/_lista_" +#___________________________________________________________________ +# +# Proceso +#___________________________________________________________________ + + echo "Creacion de imagen incremental..." | tee -a $OGLOGSESSION $OGLOGFILE + + ORIGEN=$PARTICION$RUTAORIGEN/ + DESTINO="$REPOSITORIO/$NOMBREIMG/" + + # Borrado previo de imagen en repositorio + if [ $BORRARIMG -eq 1 ]; then + echo "Borrando previamente imagen del repositorio" | tee -a $OGLOGSESSION $OGLOGFILE + fi + + # Creación de la lista de archivos entre partición e imagen básica del repositorio + echo "Creación de la lista de archivos a transferir entre $ORIGEN y $DESTINO" | tee -a $OGLOGSESSION $OGLOGFILE + crearImagen $ORIGEN $DESTINO $SISTEMAFICHERO 1 $TMPFILELIST + RETVAL=$? + if [ $RETVAL -ne 0 ]; then + exit $OG_ERR_IMAGE + fi + + # Editar la lista y depurarla + editarLista $TMPFILELIST $FILELIST + + # Creación de la imagen incremental en el repositorio + echo "Sincronizacion para crear imagen incremental entre $ORIGEN y $DESTINO" | tee -a $OGLOGSESSION $OGLOGFILE + crearImagen $ORIGEN $DESTINO $SISTEMAFICHERO 2 $FILELIST + RETVAL=$? + if [ $RETVAL -ne 0 ]; then + exit $OG_ERR_IMAGE + fi + + # Copia opcional a la caché + if [ $COPIACACHE -eq 1 ]; then + echo "Copiando imagen a cache" | tee -a $OGLOGSESSION $OGLOGFILE + CACHE=$(montaCache) + if [ -z $CACHE ]; then + echo "No se ha podido copiar la imagen a la cache" | tee -a $OGLOGSESSION $OGLOGFILE + exit 0 + fi + + # Borrar imagen de la caché + if [ $BORRACACHE -eq 1 ]; then + echo "Borrando imagen $NOMBREIMGINC de la cache" | tee -a $OGLOGSESSION $OGLOGFILE + rm -R $CACHE$OGIMG/$NOMBREIMGINC + fi + + DESTINO="$CACHE$OGIMG/$NOMBREIMGINC/" + echo "Sincronizando imagen entre $ORIGEN y $DESTINO" | tee -a $OGLOGSESSION $OGLOGFILE + crearImagen $ORIGEN $DESTINO $SISTEMAFICHERO 2 $FILELIST + RETVAL=$? + if [ $RETVAL -ne 0 ]; then + exit $OG_ERR_IMAGE + fi + fi +#___________________________________________________________________ +# +# Retorno +#___________________________________________________________________ + + exit 0 +
\ No newline at end of file |