Explorar el Código

Añadoinformacion sobre children datasets, encontrados o no.

pull/1/head
Pablo Sarria hace 5 años
padre
commit
ef255d79b2
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      zonebackuptozone.sh

+ 4
- 1
zonebackuptozone.sh Ver fichero

@@ -103,11 +103,12 @@ send_snap ${UUID}


# we check this UUID for additional datasets # we check this UUID for additional datasets


echo "Looking for addtional datasets in ${UUID}..."
echo "Looking for addtional children datasets in ${UUID}..."
DATASET=`vmadm get ${UUID} | json datasets.0 | sed 's/zones\///' | tr -d '\n'` DATASET=`vmadm get ${UUID} | json datasets.0 | sed 's/zones\///' | tr -d '\n'`
echo "done." echo "done."


if [ ! -z "${DATASET}" ]; then if [ ! -z "${DATASET}" ]; then
echo "Finded children dataset: ${DATASET}"
check_snap ${DATASET} check_snap ${DATASET}


if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
@@ -118,6 +119,8 @@ if [ ! -z "${DATASET}" ]; then
fi fi


send_snap ${DATASET} send_snap ${DATASET}
else
echo "No children datasets finded."
fi fi


# we send the config # we send the config


Cargando…
Cancelar
Guardar