From b14184d3c81d73e11e379a98f7e5c12dfb8f96a5 Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Mon, 21 Apr 2014 00:15:07 -0700 Subject: [PATCH] fix bug 4075:nimol plugin has syntax errors --- xCAT-server/lib/xcat/plugins/nimol.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/nimol.pm b/xCAT-server/lib/xcat/plugins/nimol.pm index 81de7adf7..afc2a9336 100644 --- a/xCAT-server/lib/xcat/plugins/nimol.pm +++ b/xCAT-server/lib/xcat/plugins/nimol.pm @@ -412,7 +412,7 @@ sub create_imgconf_file { my $rootpw = undef; my $passwdtab = xCAT::Table->new('passwd'); if ($passwdtab) { - my $et = $passwdtab->getAttribs({key => 'vios' username => 'padmin'}, 'password'); + my $et = $passwdtab->getAttribs({key => 'vios', username => 'padmin'}, 'password'); if ($et and defined ($et->{'password'})) { $rootpw = $et->{'password'}; }