aboutsummaryrefslogtreecommitdiff
path: root/handlers/ldap.in
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2007-10-12 17:06:09 +0000
committerintrigeri <intrigeri@boum.org>2007-10-12 17:06:09 +0000
commit579ea902ba24854b3c9acb307cda7e996e8e41a3 (patch)
tree373ce0a2242050dad65b84950520c6d44a9445fc /handlers/ldap.in
parentbe75e4e6c536882c14db9a41c61585e7a9c045f6 (diff)
downloadbackupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.gz
backupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.bz2
fixed autotools build, broken since r466, inhandlers/Makefile.am
Diffstat (limited to 'handlers/ldap.in')
-rw-r--r--handlers/ldap.in105
1 files changed, 105 insertions, 0 deletions
diff --git a/handlers/ldap.in b/handlers/ldap.in
new file mode 100644
index 0000000..5f9040a
--- /dev/null
+++ b/handlers/ldap.in
@@ -0,0 +1,105 @@
+# -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
+#
+# openldap backup handler script for backupninja
+#
+
+getconf backupdir /var/backups/ldap
+getconf conf /etc/ldap/slapd.conf
+getconf databases all
+getconf compress yes
+getconf ldif yes
+getconf restart no
+getconf method ldapsearch
+getconf passwordfile
+getconf binddn
+getconf ldaphost
+getconf tls yes
+
+if [ $tls = 'yes' ]; then
+ URLBASE="ldaps"
+else
+ URLBASE="ldap"
+fi
+
+status="ok"
+
+[ -f $conf ] || fatal "slapd config file ($conf) not found"
+[ -d $backupdir ] || mkdir -p $backupdir
+[ -d $backupdir ] || fatal "Backup directory '$backupdir'"
+
+dbsuffixes=(`@AWK@ 'BEGIN {OFS=":"} /[:space:]*^database[:space:]*\w*/ {db=$2}; /^[:space:]*suffix[:space:]*\w*/ {if (db=="bdb"||db=="ldbm") print db,$2}' $conf|@SED@ -e 's/[" ]//g'`)
+
+## LDIF DUMP
+
+if [ "$ldif" == "yes" ]; then
+ dumpdir="$backupdir"
+ [ -d $dumpdir ] || mkdir -p $dumpdir
+
+ if [ "$databases" == 'all' ]; then
+ dbcount=`grep '^database' $conf | wc -l`
+ let "dbcount = dbcount - 1"
+ databases=`seq 0 $dbcount`;
+ fi
+
+ for db in $databases; do
+ if [ `expr index "$dbnum" "="` == "0" ]; then
+ # db is a number, get the suffix.
+ dbsuffix=${dbsuffixes[$db]/*:/}
+ else
+ dbsuffix=$db
+ fi
+ # some databases don't have suffix (like monitor), skip these
+ if [ "$dbsuffix" == "" ]; then
+ continue;
+ fi
+
+ if [ "$method" == "slapcat" ]; then
+ execstr="$SLAPCAT -f $conf -b $dbsuffix"
+ debug "$execstr"
+ else
+ if [ -n "$ldaphost" ]; then
+ execstr="$LDAPSEARCH -H $URLBASE://$ldaphost -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile"
+ else
+ execstr="$LDAPSEARCH -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile"
+ fi
+ [ -f "$passwordfile" ] || fatal "Password file $passwordfile not found. When method is set to ldapsearch, you must also specify a password file."
+ debug "$execstr"
+ fi
+ if [ ! $test ]; then
+ if [ "$restart" == "yes" ]; then
+ debug "Shutting down ldap server..."
+ /etc/init.d/slapd stop
+ fi
+
+ ext=
+ if [ "$compress" == "yes" ]; then
+ ext=".gz"
+ fi
+ touch $dumpdir/$dbsuffix.ldif$ext
+ if [ ! -f $dumpdir/$dbsuffix.ldif$ext ]; then
+ fatal "Couldn't create ldif dump file: $dumpdir/$dbsuffix.ldif$ext"
+ fi
+
+ if [ "$compress" == "yes" ]; then
+ output=`$execstr | $GZIP > $dumpdir/$dbsuffix.ldif.gz`
+ else
+ output=`$execstr > $dumpdir/$dbsuffix.ldif`
+ fi
+ code=$?
+ if [ "$code" == "0" ]; then
+ debug $output
+ info "Successfully finished ldif export of $dbsuffix"
+ else
+ warning $output
+ warning "Failed ldif export of $dbsuffix"
+ fi
+
+ if [ "$restart" == "yes" ]; then
+ debug "Starting ldap server..."
+ /etc/init.d/slapd start
+ fi
+ fi
+ done
+fi
+
+return 0