diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-01 16:19:51 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-06-01 16:19:51 -0700 |
commit | b148ddcccd9d4a30464423b524fc03700507cb19 (patch) | |
tree | 3259cc792cdaf8912b23e1920f5f176a101a73e4 /lib | |
parent | bf4dd2a3dd0f36ebd5c1c7a6a3705d378d0453b2 (diff) | |
download | vyatta-cfg-system-b148ddcccd9d4a30464423b524fc03700507cb19.tar.gz vyatta-cfg-system-b148ddcccd9d4a30464423b524fc03700507cb19.zip |
Fix User Login configurator
Missing config setup.
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; |