diff options
| author | Micah Anderson <micah@riseup.net> | 2005-04-21 18:47:57 +0000 | 
|---|---|---|
| committer | Micah Anderson <micah@riseup.net> | 2005-04-21 18:47:57 +0000 | 
| commit | 4924d343a42e02af4d5af66571ce3a4d65ad22d6 (patch) | |
| tree | 0982db0b5071cb6da66deb263b394c1253e02ed4 /handlers/ldap | |
| parent | 0528f46c8cb72310ac44ff17efc67dcaad0f7e25 (diff) | |
| download | backupninja-4924d343a42e02af4d5af66571ce3a4d65ad22d6.tar.gz backupninja-4924d343a42e02af4d5af66571ce3a4d65ad22d6.tar.bz2 | |
Added enhanced options to ldap handler
Diffstat (limited to 'handlers/ldap')
| -rw-r--r-- | handlers/ldap | 40 | 
1 files changed, 31 insertions, 9 deletions
| diff --git a/handlers/ldap b/handlers/ldap index 9ead9d1..e789519 100644 --- a/handlers/ldap +++ b/handlers/ldap @@ -7,9 +7,10 @@ getconf conf /etc/ldap/slapd.conf  getconf databases all  getconf compress yes  getconf ldif yes -getconf hotcopy no - -# hot copy is not yet supported +getconf restart no +getconf method ldapsearch +getconf passwordfile +getconf binddn  status="ok" @@ -42,18 +43,39 @@ if [ "$ldif" == "yes" ]; then  		if [ "$dbsuffix" == "" ]; then  			continue;  		fi -		touch $dumpdir/$dbsuffix.ldif -		if [ ! -f $dumpdir/$dbsuffix.ldif ]; then -			fatal "Couldn't create ldif dump file: $dumpdir/$dbsuffix.ldif" + +		if [ "$method" == "slapcat" ]; then +			execstr="$SLAPCAT -f $conf -b $dbsuffix" +			if [ "$restart" == "yes" ]; then +				debug "Shutting down ldap server..." +				/etc/init.d/slapd stop +			fi +			debug "$execstr" +		else +			execstr="$LDAPSEARCH -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile" +			[ -f "$passwordfile" ] || fatal "Password file $passwordfile not found" +			if [ "$restart" == "yes" ]; then +				debug "Shutting down ldap server..." +				/etc/init.d/slapd stop +			fi +			debug "$execstr"  		fi -		execstr="$SLAPCAT -f $conf -b $dbsuffix -l $dumpdir/$dbsuffix.ldif" -		debug "$execstr"  		if [ ! $test ]; then -			output=`$execstr` + +			touch $dumpdir/$dbsuffix.ldif +			if [ ! -f $dumpdir/$dbsuffix.ldif ]; then +				fatal "Couldn't create ldif dump file: $dumpdir/$dbsuffix.ldif" +			fi + +			output=`$execstr > $dumpdir/$dbsuffix.ldif`  			code=$?  			if [ "$code" == "0" ]; then  				debug $output  				info "Successfully finished ldif export of $dbsuffix" +				if [ "$restart" == "yes" ]; then +					debug "Starting ldap server..." +					/etc/init.d/slapd start +				fi  			else  				warning $output  				warning "Failed ldif export of $dbsuffix" | 
