From 187d34b82f80c9c251c81cf9b96aa8d52e9f21e2 Mon Sep 17 00:00:00 2001 From: DmitriyEshenko Date: Tue, 14 Jan 2020 21:24:42 +0000 Subject: vrrp: T1884: Keep transition-script native behaviour and implement transaction-script 'stop' --- src/op_mode/vrrp.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/op_mode/vrrp.py') diff --git a/src/op_mode/vrrp.py b/src/op_mode/vrrp.py index 54e1bfb57..8d1369823 100755 --- a/src/op_mode/vrrp.py +++ b/src/op_mode/vrrp.py @@ -32,6 +32,7 @@ def print_summary(): # Replace with inotify or similar if it proves problematic time.sleep(0.2) json_data = vyos.keepalived.get_json_data() + vyos.keepalived.remove_vrrp_data("json") except: print("VRRP information is not available") sys.exit(1) @@ -63,6 +64,7 @@ def print_statistics(): time.sleep(0.2) output = vyos.keepalived.get_statistics() print(output) + vyos.keepalived.remove_vrrp_data("stats") except: print("VRRP statistics are not available") sys.exit(1) @@ -73,6 +75,7 @@ def print_state_data(): time.sleep(0.2) output = vyos.keepalived.get_state_data() print(output) + vyos.keepalived.remove_vrrp_data("state") except: print("VRRP information is not available") sys.exit(1) -- cgit v1.2.3