summaryrefslogtreecommitdiff
path: root/src/conf_mode/http-api.py
diff options
context:
space:
mode:
authorThomas Mangin <thomas.mangin@exa.net.uk>2020-05-19 21:13:40 +0100
committerThomas Mangin <thomas.mangin@exa.net.uk>2020-05-19 21:13:40 +0100
commit43dd945c5a45c86c491892f30546d0179751bf4a (patch)
tree9e30f8270347717726dc137b61b5034d90f05072 /src/conf_mode/http-api.py
parent3458a8b50853ecd032ebc3ee87f00452ac73ebcd (diff)
downloadvyos-1x-43dd945c5a45c86c491892f30546d0179751bf4a.tar.gz
vyos-1x-43dd945c5a45c86c491892f30546d0179751bf4a.zip
util: T2467: add systemctl to autosudo
Diffstat (limited to 'src/conf_mode/http-api.py')
-rwxr-xr-xsrc/conf_mode/http-api.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/http-api.py b/src/conf_mode/http-api.py
index 26f4aea7f..3b8a67ef6 100755
--- a/src/conf_mode/http-api.py
+++ b/src/conf_mode/http-api.py
@@ -92,9 +92,9 @@ def generate(http_api):
def apply(http_api):
if http_api is not None:
- call('sudo systemctl restart vyos-http-api.service')
+ call('systemctl restart vyos-http-api.service')
else:
- call('sudo systemctl stop vyos-http-api.service')
+ call('systemctl stop vyos-http-api.service')
for dep in dependencies:
cmd(f'{vyos_conf_scripts_dir}/{dep}', raising=ConfigError)