From: hickert Date: Tue, 30 Jan 2007 05:46:53 +0000 (+0000) Subject: Updated and tested, smbhash generation after fresh setup X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5a8fbf427abd886a3d080f0b817b9195689ec229;p=gosa.git Updated and tested, smbhash generation after fresh setup git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@5657 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions_setup.inc b/include/functions_setup.inc index 7d41ffd95..0db0df0d2 100644 --- a/include/functions_setup.inc +++ b/include/functions_setup.inc @@ -420,7 +420,7 @@ function perform_additional_checks(&$faults) $alt = 0; if (!$have_mkntpwd){ - $query= "LC_ALL=C LANG=C perl -MCrypt::SmbHash -e 'ntlmgen \"PASSWD\", \$lm, \$nt; print \"\${lm}:\${nt}\\n\";' &>/dev/null"; + $query= 'LC_ALL=C LANG=C perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;" &>/dev/null'; system ($query, $ret); $alt= ($ret == 0); } @@ -505,7 +505,7 @@ function parse_contrib_conf() } elseif (preg_match("/^Usage: mkntpwd /", shell_exec ("mkntpwd 2>&1"))){ $pwdhash= "mkntpwd"; } else { - $pwdhash=('perl -MCrypt::SmbHash -e "ntlmgen \"\$ARGV[0]\", \$lm, \$nt; print \"\${lm}:\${nt}\n\";" $1'); + $pwdhash= 'perl -MCrypt::SmbHash -e "print join(q[:], ntlmgen $ARGV[0]), $/;"'; }