summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Southworth <john.southworth@vyatta.com>2012-01-03 16:45:43 -0800
committerJohn Southworth <john.southworth@vyatta.com>2012-01-03 16:45:43 -0800
commitdfde6f078701ae1f86cfe50e37721eec59a4c02a (patch)
treecc094c203524f1b692a932264cbb649570c9aa00
parent20ae65b9ed930519c2a1ea3c919ee02fed23eb42 (diff)
downloadvyatta-cfg-quagga-dfde6f078701ae1f86cfe50e37721eec59a4c02a.tar.gz
vyatta-cfg-quagga-dfde6f078701ae1f86cfe50e37721eec59a4c02a.zip
Bugfix 7689: change vrrp auth_type detection 'simple' to 'plaintext-password'
-rwxr-xr-xscripts/keepalived/vyatta-keepalived.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/keepalived/vyatta-keepalived.pl b/scripts/keepalived/vyatta-keepalived.pl
index 5c7676ea..3911588a 100755
--- a/scripts/keepalived/vyatta-keepalived.pl
+++ b/scripts/keepalived/vyatta-keepalived.pl
@@ -216,7 +216,7 @@ sub keepalived_get_values {
$auth_type = $config->returnValue("type");
$auth_pass = $config->returnValue("password");
if ( defined $auth_type ) {
- $auth_type = "PASS" if $auth_type eq "simple";
+ $auth_type = "PASS" if $auth_type eq "plaintext-password";
$auth_type = uc($auth_type);
if ( !defined $auth_pass ) {
next if $noerr;