diff options
author | Christian Breunig <christian@breunig.cc> | 2023-05-09 19:25:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-09 19:25:24 +0200 |
commit | 6a150eb26c97e41a66bfb693bfc0ad09c4f4fd2c (patch) | |
tree | 8f59bb8940a1c050d599d3627acefcd10245b5ed /src | |
parent | 73ec6fd55d1881e9ca0439a993e9bda8e06d1448 (diff) | |
parent | e201454f073c9a92fb56b65f497eae55fc634521 (diff) | |
download | vyos-1x-6a150eb26c97e41a66bfb693bfc0ad09c4f4fd2c.tar.gz vyos-1x-6a150eb26c97e41a66bfb693bfc0ad09c4f4fd2c.zip |
Merge pull request #1984 from sever-sever/T5060
T5060: Add disable option for high-availability
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/high-availability.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/conf_mode/high-availability.py b/src/conf_mode/high-availability.py index 79e407efd..5e76dd9f9 100755 --- a/src/conf_mode/high-availability.py +++ b/src/conf_mode/high-availability.py @@ -86,7 +86,7 @@ def get_config(config=None): return ha def verify(ha): - if not ha: + if not ha or 'disable' in ha: return None used_vrid_if = [] @@ -175,7 +175,7 @@ def verify(ha): def generate(ha): - if not ha: + if not ha or 'disable' in ha: return None render(VRRP.location['config'], 'high-availability/keepalived.conf.j2', ha) @@ -183,7 +183,7 @@ def generate(ha): def apply(ha): service_name = 'keepalived.service' - if not ha: + if not ha or 'disable' in ha: call(f'systemctl stop {service_name}') return None |