1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

testprogs: Fix kerberos_kinit with additional options

The additional options need to come before we specify the principal

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Andreas Schneider
2022-03-17 13:57:21 +01:00
committed by Andreas Schneider
parent b39176f795
commit 4d0ea9e3b0

View File

@ -98,11 +98,11 @@ kerberos_kinit() {
if [ "${kbase}" = "samba4kinit" ]; then if [ "${kbase}" = "samba4kinit" ]; then
kpassfile=$(mktemp) kpassfile=$(mktemp)
echo $password > ${kpassfile} echo $password > ${kpassfile}
$kinit_tool -c ${KRB5CCNAME} --password-file=${kpassfile} $principal $@ $kinit_tool -c ${KRB5CCNAME} --password-file=${kpassfile} $@ $principal
status=$? status=$?
rm -f ${kpassfile} rm -f ${kpassfile}
else else
echo $password | $kinit_tool $principal $@ echo $password | $kinit_tool $@ $principal
status=$? status=$?
fi fi
return $status return $status