diff options
author | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-07 10:07:35 +0100 |
---|---|---|
committer | Thomas Mangin <thomas.mangin@exa.net.uk> | 2020-04-07 10:14:47 +0100 |
commit | f52c3b345be8e5aa1af8bdebcc70c852bb320568 (patch) | |
tree | eba1fc570ee7bbf8f32c257c0289f6cc59d991be /src/conf_mode/protocols_pim.py | |
parent | 09ad28b28c9ebd9308cfe9048686b3b0ef9cfd9c (diff) | |
download | vyos-1x-f52c3b345be8e5aa1af8bdebcc70c852bb320568.tar.gz vyos-1x-f52c3b345be8e5aa1af8bdebcc70c852bb320568.zip |
util: T2226: fix merge conflict
Diffstat (limited to 'src/conf_mode/protocols_pim.py')
-rwxr-xr-x | src/conf_mode/protocols_pim.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/conf_mode/protocols_pim.py b/src/conf_mode/protocols_pim.py index 0e22d3a6b..9b74fe992 100755 --- a/src/conf_mode/protocols_pim.py +++ b/src/conf_mode/protocols_pim.py @@ -132,11 +132,7 @@ def apply(pim): return None if os.path.exists(config_file): -<<<<<<< HEAD - os.system("vtysh -d pimd -f " + config_file) -======= - run("sudo vtysh -d pimd -f " + config_file) ->>>>>>> util: T2226: covert most calls from os.system to util + run("vtysh -d pimd -f " + config_file) os.remove(config_file) return None |