Skip to content
Snippets Groups Projects
Commit 07c424a7 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Additional command line argument ordering fixes

parent 20e7b455
No related branches found
No related tags found
No related merge requests found
......@@ -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)!"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment