Additional command line argument ordering fixes

This commit is contained in:
Kurt Zeilenga 2004-12-30 12:48:14 +00:00
parent 20e7b45555
commit 07c424a7c3
2 changed files with 4 additions and 4 deletions

View file

@ -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)!"

View file

@ -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)!"