From 8600f159b0a7286084cf5413109cb2afd3b7748f Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 15 Aug 2013 11:35:12 -0400 Subject: [PATCH] Default in user/password in the same way that ipmi works in plugin --- xCAT-client/bin/pasu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-client/bin/pasu b/xCAT-client/bin/pasu index d8c380c7a..3ebdb6038 100755 --- a/xCAT-client/bin/pasu +++ b/xCAT-client/bin/pasu @@ -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); }