diff options
author | adv <adv@uma.es> | 2011-04-25 07:16:15 +0000 |
---|---|---|
committer | adv <adv@uma.es> | 2011-04-25 07:16:15 +0000 |
commit | 0b43097f34c76b445897444b2c9b284d5a190e64 (patch) | |
tree | 4cad25c9ea08f53f871c9b326c989b2a168bbf1f | |
parent | 4adfd0aed607002ddd13948dd23a458d47eb2b8b (diff) |
trunk #381 OG_ERR_IMGSIZEPARTITION de ogRestoreImage() para seguimiento desde WWW
git-svn-id: https://opengnsys.es/svn/trunk@1891 a21b9725-9963-47de-94b9-378ad31fedc9
-rwxr-xr-x | client/engine/Image.lib | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/engine/Image.lib b/client/engine/Image.lib index 399e3da1..c85354a1 100755 --- a/client/engine/Image.lib +++ b/client/engine/Image.lib @@ -457,6 +457,7 @@ touch $IMGDIR/$(basename "${!#}").lock #@exception OG_ERR_NOTFOUND fichero de imagen o partición no detectados. #@exception OG_ERR_LOCKED partición bloqueada por otra operación. #@exception OG_ERR_IMAGE error al restaurar la imagen del sistema. +#@exception OG_ERR_IMGSIZEPARTITION Tamaño de la particion es menor al tamaño de la imagen. #@todo Comprobar incongruencias partición-imagen, control de errores, definir parámetros, caché/repositorio, etc. #@version 0.1 - Integracion para Opengnsys - HIDRA:RestaurarImagen{EXT3, NTFS}.sh; EAC: RestorePartitionFromImage() en Deploy.lib #@author Ramon Gomez, ETSII Universidad de Sevilla @@ -490,7 +491,7 @@ IMGFILE=$(ogGetPath "$1" "$2.$IMGTYPE") IMGSIZE=$(ogGetImageSize "$1" "$2") PARTSIZE=$(ogGetPartitionSize $3 $4) if [ $IMGSIZE -gt $PARTSIZE ]; then - ogRaiseError $OG_ERR_PARTITION "$IMGSIZE > $PARTSIZE" + ogRaiseError $OG_ERR_IMGSIZEPARTITION "$IMGSIZE > $PARTSIZE" return $? fi |