diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/keepalived/vyatta-keepalived.pl | 2 |
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; |