mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 03:29:35 -05:00
Additional command line argument ordering fixes
This commit is contained in:
parent
20e7b45555
commit
07c424a7c3
2 changed files with 4 additions and 4 deletions
|
|
@ -274,8 +274,8 @@ fi
|
|||
BASEDN="o=Example,c=US"
|
||||
echo "changing password to database \"$BASEDN\"..."
|
||||
$LDAPPASSWD -h $LOCALHOST -p $PORT1 -D "cn=Manager,$BASEDN" -w $PASSWD \
|
||||
"cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
|
||||
-s $PASSWD >> $TESTOUT 2>&1
|
||||
-s $PASSWD "cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
|
||||
>> $TESTOUT 2>&1
|
||||
RC=$?
|
||||
if test $RC != 0 ; then
|
||||
echo "Passwd ExOp failed ($RC)!"
|
||||
|
|
|
|||
|
|
@ -282,8 +282,8 @@ fi
|
|||
BASEDN="o=Example,c=US"
|
||||
echo "changing password to database \"$BASEDN\"..."
|
||||
$LDAPPASSWD -h $LOCALHOST -p $PORT1 -D "cn=Manager,$BASEDN" -w $PASSWD \
|
||||
"cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
|
||||
-s $PASSWD >> $TESTOUT 2>&1
|
||||
-s $PASSWD "cn=Added User,ou=Alumni Association,ou=People,$BASEDN" \
|
||||
>> $TESTOUT 2>&1
|
||||
RC=$?
|
||||
if test $RC != 0 ; then
|
||||
echo "Passwd ExOp failed ($RC)!"
|
||||
|
|
|
|||
Loading…
Reference in a new issue