From: Juan Gomez Date: Wed, 26 May 1999 19:15:57 +0000 (+0000) Subject: Trying to change access to this file... X-Git-Tag: OPENLDAP_REL_ENG_2_BP~531 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=336e6e604ed9fca0c4fe375c3973de5efdc55254;p=openldap Trying to change access to this file... --- diff --git a/tests/scripts/startup_nis_ldap_server.sh b/tests/scripts/startup_nis_ldap_server.sh deleted file mode 100755 index 8faf3027bd..0000000000 --- a/tests/scripts/startup_nis_ldap_server.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh - - -if [ $# -eq 0 ]; then - SRCDIR="." -else - SRCDIR=$1; shift -fi -if [ $# -eq 1 ]; then - BDB2=$1; shift -fi - -. $SRCDIR/scripts/defines.sh $SRCDIR $BDB2 - -# Sample NIS database in LDIF format -NIS_LDIF=$SRCDIR/../schema/nis_sample.ldif - -# Sample configuration file for your LDAP server -if test "$BACKEND" = "bdb2" ; then - NIS_CONF=$DATADIR/slapd-bdb2-nis-master.conf -else - NIS_CONF=$DATADIR/slapd-nis-master.conf -fi - -echo "Cleaning up in $DBDIR..." - -rm -f $DBDIR/[!C]* - -echo "Running ldif2ldbm to build slapd database..." -$LDIF2LDBM -f $NIS_CONF -i $NIS_LDIF -e ../servers/slapd/tools -RC=$? -if [ $RC != 0 ]; then - echo "ldif2ldbm failed!" - exit $RC -fi - -echo "Starting slapd on TCP/IP port $PORT..." -$SLAPD -f $NIS_CONF -p $PORT -d $LVL $TIMING > $MASTERLOG 2>&1 & -PID=$! - -echo ">>>>> LDAP server with NIS schema is up! PID=$PID" - - -exit 0