diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-01 16:19:51 -0700 |
---|---|---|
committer | An-Cheng Huang <ancheng@vyatta.com> | 2009-07-17 14:30:19 -0700 |
commit | 3ed82382feefc61104be1f324302a1aaee6e9fb3 (patch) | |
tree | 8049cf567ebd99e7f9db96f143e3f268c3939733 /lib | |
parent | e3fd58c930f51ce8d0914d488824ad8523a25e10 (diff) | |
download | vyatta-cfg-quagga-3ed82382feefc61104be1f324302a1aaee6e9fb3.tar.gz vyatta-cfg-quagga-3ed82382feefc61104be1f324302a1aaee6e9fb3.zip |
Fix User Login configurator
Missing config setup.
(cherry picked from commit b148ddcccd9d4a30464423b524fc03700507cb19)
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/Vyatta/Login/User.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Vyatta/Login/User.pm b/lib/Vyatta/Login/User.pm index 42bcbd53..f053abf1 100755 --- a/lib/Vyatta/Login/User.pm +++ b/lib/Vyatta/Login/User.pm @@ -23,6 +23,7 @@ use Vyatta::Config; sub new { my ( $that ) = @_; my $class = ref($that) || $that; + my $config = new Vyatta::Config; $config->setLevel("system login user"); my %users = $config->listNodeStatus(); my @user_keys = sort keys %users; |