diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | scripts/keepalived/vyatta-show-vrrp.pl | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index a14e3358..10840738 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +vyatta-cfg-system (0.19.79) unstable; urgency=low + + * Fix 5912: "show vrrp" doesn't list sync-group + + -- Stig Thormodsrud <stig@vyatta.com> Wed, 18 May 2011 12:25:33 -0700 + vyatta-cfg-system (0.19.78) unstable; urgency=low * irq-affinity: add workaround to avoid some cpu's diff --git a/scripts/keepalived/vyatta-show-vrrp.pl b/scripts/keepalived/vyatta-show-vrrp.pl index bcc6ca29..28a9970c 100755 --- a/scripts/keepalived/vyatta-show-vrrp.pl +++ b/scripts/keepalived/vyatta-show-vrrp.pl @@ -211,6 +211,7 @@ sub vrrp_show { if ($state eq "master" || $state eq "backup" || $state eq "fault") { my ($primary_addr, $priority, $preempt, $advert_int, $auth_type, @vips) = Vyatta::Keepalived::vrrp_get_config($intf, $group); + my $sync = list_vrrp_sync_group($intf, $group); print "Physical interface: $intf, Source Address $primary_addr\n"; print " Interface state: $link, Group $group, State: $state\n"; print " Priority: $priority, Advertisement interval: $advert_int, "; @@ -240,6 +241,7 @@ sub vrrp_show { } print ", Master Priority: $master_prio\n"; } + print " Sync-group: $sync\n" if defined $sync; } else { print "Physical interface $intf, State: unknown\n"; } |