Default in user/password in the same way that ipmi works in plugin

This commit is contained in:
Jarrod Johnson 2013-08-15 11:35:12 -04:00
parent c03f4d202f
commit 8600f159b0

View File

@ -386,7 +386,7 @@ sub getdefaultcredentials {
last;
}
}
if (!defined($user) || !defined($pw)) { die "Did not find the ipmi username and password in the xCAT passwd table.\n"; }
if (!defined($user) || !defined($pw)) { $user = "USERID"; $pw = "PASSW0RD"; }
return ($user, $pw);
}