summaryrefslogtreecommitdiffstats
path: root/client/engine/Image.lib
diff options
context:
space:
mode:
authoririna <irinagomez@us.es>2017-03-28 07:47:28 +0000
committeririna <irinagomez@us.es>2017-03-28 07:47:28 +0000
commite784187357dbdd96227c5de58ebaad32ed444084 (patch)
tree7d3888ba16ea88d0495a5fa80c008432ead3d6ca /client/engine/Image.lib
parentce7af22d759b17cb8e1f2fc5fadac533d4942f01 (diff)
#771 ogGetSizeParameters: En la salida se incluye el espacio disponible en el repositorio. Los script de creación de imagen se adaptan al cambio.
git-svn-id: https://opengnsys.es/svn/branches/version1.1@5248 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/engine/Image.lib')
-rwxr-xr-xclient/engine/Image.lib7
1 files changed, 5 insertions, 2 deletions
diff --git a/client/engine/Image.lib b/client/engine/Image.lib
index 021a86f7..47ea2372 100755
--- a/client/engine/Image.lib
+++ b/client/engine/Image.lib
@@ -455,11 +455,14 @@ dd if="$DISK" of="$IMGFILE" bs=446 count=1 || ogRaiseError $OG_ERR_IMAGE "$1 $IM
#@param int_part numero de particion
#@param str_repo repositorio de imágenes { REPO, CACHE }
#@param str_imageType Tipo de imagen: monolit (por defecto), sync o diff. (parametro opcional)
-#@return SIZEDATA SIZEREQUIRED ISENOUGHSPACE
+#@return SIZEDATA SIZEREQUIRED SIZEFREE ISENOUGHSPACE
#@note si str_imageType= diff necesario /tmp/ogimg.info, que es creado por ogCreateInfoImage.
#@exception OG_ERR_FORMAT formato incorrecto.
#@author Irina Gomez, ETSII Universidad de Sevilla
#@date 2014/10/24
+#@version 1.1.0 - En la salida se incluye el espacio disponible en el repositorio (ticket #771)
+#@author Irina Gomez - ETSII Universidad de Sevilla
+#@date 2017-03-28
#*/ ##
function ogGetSizeParameters ()
{
@@ -515,7 +518,7 @@ fi
[ "$SIZEREQUIRED" -lt "$SIZEFREE" ] && ISENOUGHSPACE=TRUE || ISENOUGHSPACE=FALSE
-echo $SIZEDATA $SIZEREQUIRED $ISENOUGHSPACE
+echo $SIZEDATA $SIZEREQUIRED $SIZEFREE $ISENOUGHSPACE
}