summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhagbard <vyosdev@derith.de>2019-01-23 11:51:05 -0800
committerhagbard <vyosdev@derith.de>2019-01-25 12:02:44 -0800
commit2ff09dbd66ee8196f985d1215f0e9bfb519efb12 (patch)
tree20db27d46542b35ba47eed5fd74213c2b4122336
parent44dea640c6587a3599b427da9cdf79857fb4003a (diff)
downloadvyos-1x-2ff09dbd66ee8196f985d1215f0e9bfb519efb12.tar.gz
vyos-1x-2ff09dbd66ee8196f985d1215f0e9bfb519efb12.zip
Fix: T1178: Scheduled script breaks ability to modify configuration
-rw-r--r--debian/changelog6
-rwxr-xr-xsrc/conf_mode/task_scheduler.py2
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 783080a92..415cee0ff 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+vyos-1x (1.2.0-10) unstable; urgency=low
+
+ * T1178: Scheduled script breaks ability to modify configuration
+
+ -- hagbard <vyosdev@derith.de> Tue, 22 Jan 2019 13:35:09 -0800
+
vyos-1x (1.2.0-9) unstable; urgency=low
* T1168: Upgrade: 1,1,7 -> 1.2.0-epa2
diff --git a/src/conf_mode/task_scheduler.py b/src/conf_mode/task_scheduler.py
index 285afe2b5..b171e9576 100755
--- a/src/conf_mode/task_scheduler.py
+++ b/src/conf_mode/task_scheduler.py
@@ -49,7 +49,7 @@ def make_command(executable, arguments):
if arguments:
return("sg vyattacfg \"{0} {1}\"".format(executable, arguments))
else:
- return(executable)
+ return("sg vyattacfg \"{0}\"".format(executable))
def get_config():
conf = Config()