diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-01-20 12:47:35 +0100 |
---|---|---|
committer | Alvaro Neira Ayuso <aneira@soleta.eu> | 2020-01-21 17:32:48 +0100 |
commit | 9890d60300d4e2d2cd6d4a87de81471f943e975c (patch) | |
tree | 24aae4600b60fc0fcbe5aa1aecc778904ff18d1e /src/linux | |
parent | 96c2ddea2d407845441cd740c8330f15fc75b7a0 (diff) |
Fix /shell/run commands splitting
This patch splits shell commands either with ';' or '\n'.
Diffstat (limited to 'src/linux')
-rw-r--r-- | src/linux/ogOperations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py index 505894b..357dd2f 100644 --- a/src/linux/ogOperations.py +++ b/src/linux/ogOperations.py @@ -49,7 +49,7 @@ def reboot(): def execCMD(request, ogRest): cmd = request.getrun() - cmds = cmd.split(" ") + cmds = cmd.split(";|\n") try: ogRest.proc = subprocess.Popen(cmds, stdout=subprocess.PIPE, shell=True) (output, error) = ogRest.proc.communicate() |