diff options
author | irina <irinagomez@us.es> | 2014-02-17 08:32:59 +0000 |
---|---|---|
committer | irina <irinagomez@us.es> | 2014-02-17 08:32:59 +0000 |
commit | 4fcbcc8308f82aed30288e0d25b83ebae13c85ea (patch) | |
tree | 1ad0bdbf8ba606ed7c72c17335835baedc64807f /admin/WebConsole/asistentes/jscripts/asistentes.js | |
parent | 993c3283b3b8c0df4fce82b210f62ad361edf06e (diff) |
#636 #537 Log en tiempo real. En los script de restauracion los mensajes se envian a session.log y las salidas de los comandos a commad.log. utf-8 en la pagina que muestra los log
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4149 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/WebConsole/asistentes/jscripts/asistentes.js')
-rw-r--r-- | admin/WebConsole/asistentes/jscripts/asistentes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/WebConsole/asistentes/jscripts/asistentes.js b/admin/WebConsole/asistentes/jscripts/asistentes.js index 7a5b472e..00009538 100644 --- a/admin/WebConsole/asistentes/jscripts/asistentes.js +++ b/admin/WebConsole/asistentes/jscripts/asistentes.js @@ -48,7 +48,7 @@ if (form.modo[0].checked) command="deployImage REPO /" + form.idimagen.value + " "+diskPart[0]+" " + diskPart[1] + " " + protocol ; form.codigo.value="\ echo [0] $MSG_SCRIPTS_TASK_START " + command +" | tee -a $OGLOGSESSION \n \ " + -command + " | tee -a $OGLOGCOMMAND"; +command + " \n"; //form.codigo.value="deployImage REPO /" + form.idimagen.value + " 1 " + form.idparticion.value + " " + protocol ; } else @@ -56,7 +56,7 @@ else command="updateCache REPO /" + form.idimagen.value + ".img" + " " + protocol ; form.codigo.value="\ echo [0] $MSG_SCRIPTS_TASK_START " + command +" | tee -a $OGLOGSESSION \n \ " + -command + " | tee -a $OGLOGCOMMAND"; +command + " \n"; //form.codigo.value="updateCache REPO /" + form.idimagen.value + ".img" + " " + protocol ; } |