summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/comandos
diff options
context:
space:
mode:
authorJavier Sánchez Parra <jsanchez@soleta.eu>2020-02-25 13:39:42 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2020-06-02 12:32:36 +0200
commit33b0ef211fb764156072431c55bc46779aee3c1d (patch)
treeaad36578bf8121d37ed50797b3f5bfb9a87db0c6 /admin/WebConsole/comandos
parentcf47830e36e7831509ce621feb00a577ce5e753b (diff)
#915 Add new case to command shell/run (web)
I tried to delete a cache image but the character "*" of the command was missing so the command fails. Command received: "rm -r /opt/opengnsys/cache/opt/opengnsys/images/test." Command expected: "rm -r /opt/opengnsys/cache/opt/opengnsys/images/test.*" This command adds a new case to the call shell/run. This new case is needed because in the case of deleting a image from the cache the web only has to delete the last character of the string instead of last two characters.
Diffstat (limited to 'admin/WebConsole/comandos')
-rw-r--r--admin/WebConsole/comandos/gestores/gestor_Comandos.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/admin/WebConsole/comandos/gestores/gestor_Comandos.php b/admin/WebConsole/comandos/gestores/gestor_Comandos.php
index d825c2d3..4d52ba1f 100644
--- a/admin/WebConsole/comandos/gestores/gestor_Comandos.php
+++ b/admin/WebConsole/comandos/gestores/gestor_Comandos.php
@@ -79,9 +79,11 @@ function run_command($idcomando, $cadenaip, $cadenamac, $atributos) {
software($cadenaip, $atributos);
break;
case OG_CMD_ID_SCRIPT:
- case OG_CMD_ID_DELETE_CACHED_IMAGE:
shell(3, $cadenaip, $atributos);
break;
+ case OG_CMD_ID_DELETE_CACHED_IMAGE:
+ shell(4, $cadenaip, $atributos);
+ break;
}
}