summaryrefslogtreecommitdiffstats
path: root/admin/Interface/RestaurarImagen
diff options
context:
space:
mode:
Diffstat (limited to 'admin/Interface/RestaurarImagen')
-rwxr-xr-xadmin/Interface/RestaurarImagen14
1 files changed, 10 insertions, 4 deletions
diff --git a/admin/Interface/RestaurarImagen b/admin/Interface/RestaurarImagen
index 48f1e46a..8556807a 100755
--- a/admin/Interface/RestaurarImagen
+++ b/admin/Interface/RestaurarImagen
@@ -3,10 +3,16 @@
#
# PARAMETROS RECIBIDOS DESDE EL CLIENTE:
# $1 disco
-# $2 par=Número de particion
-# $3 Nombre canónico de la imagen
-# $4 Dirección del repositorio
+# $2 par=N�mero de particion
+# $3 Nombre can�nico de la imagen
+# $4 Direcci�n del repositorio
#_______________________________________________________________________________________________________________________________
-ogRestoreImage REPO $3 $1 $2 UNICAST
+if [ "$engine" == "testing" ]
+then
+ echo $* >> $OGLOGFILE
+ restoreImage REPO $3 $1 $2 UNICAST &>> $OGLOGFILE || exit $?
+else
+ ogRestoreImage REPO $3 $1 $2 UNICAST
+fi