From cbf383dd9e63f8293e4d69a932eec2eb04233d26 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Tue, 30 Mar 2010 19:56:37 +0000 Subject: [PATCH] -Output temporary password if manually executing a host account add git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5616 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/activedirectory.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/activedirectory.pm b/xCAT-server/lib/xcat/plugins/activedirectory.pm index f2b34a790..6364a3cba 100644 --- a/xCAT-server/lib/xcat/plugins/activedirectory.pm +++ b/xCAT-server/lib/xcat/plugins/activedirectory.pm @@ -316,7 +316,7 @@ sub process_request { if (ref $ret and $ret->{error}) { sendmsg([1,$ret->{error}]); } elsif (ref $ret) { - print $ret->{password}; + sendmsg($ret->{password},$nodename); } } }