summaryrefslogtreecommitdiffstats
path: root/src/linux
diff options
context:
space:
mode:
authorRoberto Hueso Gómez <rhueso@soleta.eu>2020-01-21 13:06:56 +0100
committerAlvaro Neira Ayuso <aneira@soleta.eu>2020-01-21 17:33:05 +0100
commitdabc7ebf83605dd6105599d7a45045e614e431cc (patch)
tree38ab5cef79602ef57af0436c1f381e22cf270c89 /src/linux
parentca0a62f9c69e13e0c74b099de85f52a9daf0df54 (diff)
Change POST /refresh to GET /refresh
This patch changes the HTTP method for /refresh and cleans up the implementation of the /refresh Linux operator.
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/ogOperations.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py
index e58256f..e41bb86 100644
--- a/src/linux/ogOperations.py
+++ b/src/linux/ogOperations.py
@@ -162,11 +162,11 @@ def image_create(path, request, ogRest):
return output.decode('utf-8')
def refresh(ogRest):
- listConfigs = []
- disk = -1;
-
try:
- ogRest.proc = subprocess.Popen([OG_PATH + 'interfaceAdm/getConfiguration'], stdout=subprocess.PIPE, shell=True)
+ cmd = OG_PATH + 'interfaceAdm/getConfiguration'
+ ogRest.proc = subprocess.Popen([cmd],
+ stdout=subprocess.PIPE,
+ shell=True)
(output, error) = ogRest.proc.communicate()
except:
raise ValueError('Error: Incorrect command value')