summaryrefslogtreecommitdiff
path: root/src
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 /src
parent44dea640c6587a3599b427da9cdf79857fb4003a (diff)
downloadvyos-1x-2ff09dbd66ee8196f985d1215f0e9bfb519efb12.tar.gz
vyos-1x-2ff09dbd66ee8196f985d1215f0e9bfb519efb12.zip
Fix: T1178: Scheduled script breaks ability to modify configuration
Diffstat (limited to 'src')
-rwxr-xr-xsrc/conf_mode/task_scheduler.py2
1 files changed, 1 insertions, 1 deletions
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()