summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2009-06-02 14:08:23 -0700
committerStephen Hemminger <stephen.hemminger@vyatta.com>2009-06-02 15:14:00 -0700
commitbf86040fef55fdb644b3670a9e1ec093e67df828 (patch)
tree0a216a4a9e21107326a20d538fe6f2fd2ba224dd /scripts
parentec47950ac719c65f0f195db6b73591640d9dd2be (diff)
downloadvyatta-cfg-system-bf86040fef55fdb644b3670a9e1ec093e67df828.tar.gz
vyatta-cfg-system-bf86040fef55fdb644b3670a9e1ec093e67df828.zip
Make Radius server work
Translate radius-server to Vyatta::Login::RadiusServer
Diffstat (limited to 'scripts')
-rw-r--r--scripts/system/vyatta_update_login.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/system/vyatta_update_login.pl b/scripts/system/vyatta_update_login.pl
index b2125de1..b854427b 100644
--- a/scripts/system/vyatta_update_login.pl
+++ b/scripts/system/vyatta_update_login.pl
@@ -28,6 +28,8 @@ $config->setLevel("system login");
foreach my $type ($config->listNodes()) {
my $kind = ucfirst $type;
+ $kind =~ s/-server/Server/;
+
my $location = "Vyatta/Login/$kind.pm";
my $class = "Vyatta::Login::$kind";