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

ldapmodify/add: Fix -P option

tests: use "ldapadd" instead of "ldapmodify -a"
parent dcc5bdfe
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,7 @@ main( int argc, char **argv )
authmethod = LDAP_AUTH_SIMPLE;
version = -1;
while (( i = getopt( argc, argv, "WFabckKnrtvh:p:D:w:d:f:" )) != EOF ) {
while (( i = getopt( argc, argv, "WFabckKnrtvh:p:D:w:d:f:P:" )) != EOF ) {
switch( i ) {
case 'a': /* add */
new = 1;
......
......@@ -19,8 +19,6 @@ fi
if test "$LDAP_PROTO" ; then
PROTO="-P $LDAP_PROTO"
else
PROTO=""
fi
PASSWDCONF=$DATADIR/slapd-passwd.conf
......
......@@ -31,12 +31,12 @@ for i in 0 1 2 3 4 5; do
fi
done
echo "Using ldapmodify to populate the database..."
$LDAPMODIFY -a -D "$MANAGERDN" -h localhost -p $PORT -w $PASSWD < \
echo "Using ldapadd to populate the database..."
$LDAPADD -D "$MANAGERDN" -h localhost -p $PORT -w $PASSWD < \
$LDIFORDERED > /dev/null 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapmodify failed!"
echo "ldapadd failed!"
kill -HUP $PID
exit $RC
fi
......
......@@ -67,12 +67,12 @@ echo "Starting slurpd..."
$SLURPD -f $MASTERCONF -d 4 -t $REPLDIR > $SLURPLOG 2>&1 &
SLURPPID=$!
echo "Using ldapmodify to populate the database..."
$LDAPMODIFY -a -D "$MANAGERDN" -h localhost -p $PORT -w $PASSWD < \
echo "Using ldapadd to populate the database..."
$LDAPADD -D "$MANAGERDN" -h localhost -p $PORT -w $PASSWD < \
$LDIFORDERED > /dev/null 2>&1
RC=$?
if test $RC != 0 ; then
echo "ldapmodify failed!"
echo "ldapadd failed!"
kill -HUP $PID $SLAVEPID $SLURPPID
exit $RC
fi
......
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