diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-19 21:13:40 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-05-19 21:13:40 +0100 |
commit | 43dd945c5a45c86c491892f30546d0179751bf4a (patch) | |
tree | 9e30f8270347717726dc137b61b5034d90f05072 /src/conf_mode/lldp.py | |
parent | 3458a8b50853ecd032ebc3ee87f00452ac73ebcd (diff) | |
download | vyos-1x-43dd945c5a45c86c491892f30546d0179751bf4a.tar.gz vyos-1x-43dd945c5a45c86c491892f30546d0179751bf4a.zip |
util: T2467: add systemctl to autosudo
Diffstat (limited to 'src/conf_mode/lldp.py')
-rwxr-xr-x | src/conf_mode/lldp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf_mode/lldp.py b/src/conf_mode/lldp.py index d128c1fe6..6446074d8 100755 --- a/src/conf_mode/lldp.py +++ b/src/conf_mode/lldp.py @@ -228,10 +228,10 @@ def generate(lldp): def apply(lldp): if lldp: # start/restart lldp service - call('sudo systemctl restart lldpd.service') + call('systemctl restart lldpd.service') else: # LLDP service has been terminated - call('sudo systemctl stop lldpd.service') + call('systemctl stop lldpd.service') os.unlink(config_file) os.unlink(vyos_config_file) |