X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=handlers%2Fldap;h=9ec48a729a96e99da832a1f5f601fc9ee4ba254b;hb=cfc47e5571e61f4323b9f64f9cbb64dfbc4bf1b4;hp=9ead9d17db491fffa1860d54d197e596fa7bfd5d;hpb=6bc45553f06e6c9b7c1162253bd0e28f3b07bbf2;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/handlers/ldap b/handlers/ldap index 9ead9d1..9ec48a7 100644 --- a/handlers/ldap +++ b/handlers/ldap @@ -1,3 +1,4 @@ +# -*- mode: sh; sh-basic-offset: 8; indent-tabs-mode: nil; -*- # # openldap backup handler script for backupninja # @@ -7,9 +8,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,14 +44,27 @@ 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" + debug "$execstr" + else + execstr="$LDAPSEARCH -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile" + [ -f "$passwordfile" ] || fatal "Password file $passwordfile not found. When method is set to ldapsearch, you must also specify a password file." + debug "$execstr" fi - execstr="$SLAPCAT -f $conf -b $dbsuffix -l $dumpdir/$dbsuffix.ldif" - debug "$execstr" if [ ! $test ]; then - output=`$execstr` + if [ "$restart" == "yes" ]; then + debug "Shutting down ldap server..." + /etc/init.d/slapd stop + fi + + 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 @@ -62,6 +77,11 @@ if [ "$ldif" == "yes" ]; then output=`$GZIP -f "$dumpdir/$dbsuffix.ldif" 2>&1` debug $output fi + + if [ "$restart" == "yes" ]; then + debug "Starting ldap server..." + /etc/init.d/slapd start + fi fi done fi