1 # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
3 # openldap backup handler script for backupninja
6 getconf backupdir /var/backups/ldap
7 getconf conf /etc/ldap/slapd.conf
12 getconf method ldapsearch
18 if [ $tls = 'yes' ]; then
26 [ -f $conf ] || fatal "slapd config file ($conf) not found"
27 [ -d $backupdir ] || mkdir -p $backupdir
28 [ -d $backupdir ] || fatal "Backup directory '$backupdir'"
30 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'`)
34 if [ "$ldif" == "yes" ]; then
36 [ -d $dumpdir ] || mkdir -p $dumpdir
38 if [ "$databases" == 'all' ]; then
39 dbcount=`grep '^database' $conf | wc -l`
40 let "dbcount = dbcount - 1"
41 databases=`seq 0 $dbcount`;
44 for db in $databases; do
45 if [ `expr index "$dbnum" "="` == "0" ]; then
46 # db is a number, get the suffix.
47 dbsuffix=${dbsuffixes[$db]/*:/}
51 # some databases don't have suffix (like monitor), skip these
52 if [ "$dbsuffix" == "" ]; then
56 if [ "$method" == "slapcat" ]; then
57 execstr="$SLAPCAT -f $conf -b $dbsuffix"
60 if [ -n "$ldaphost" ]; then
61 execstr="$LDAPSEARCH -H $URLBASE://$ldaphost -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile"
63 execstr="$LDAPSEARCH -x -L -b ""$dbsuffix"" -D ""$binddn"" -y $passwordfile"
65 [ -f "$passwordfile" ] || fatal "Password file $passwordfile not found. When method is set to ldapsearch, you must also specify a password file."
69 if [ "$restart" == "yes" ]; then
70 debug "Shutting down ldap server..."
71 /etc/init.d/slapd stop
75 if [ "$compress" == "yes" ]; then
78 touch $dumpdir/$dbsuffix.ldif$ext
79 if [ ! -f $dumpdir/$dbsuffix.ldif$ext ]; then
80 fatal "Couldn't create ldif dump file: $dumpdir/$dbsuffix.ldif$ext"
83 if [ "$compress" == "yes" ]; then
84 output=`$execstr | $GZIP > $dumpdir/$dbsuffix.ldif.gz`
86 output=`$execstr > $dumpdir/$dbsuffix.ldif`
89 if [ "$code" == "0" ]; then
91 info "Successfully finished ldif export of $dbsuffix"
94 warning "Failed ldif export of $dbsuffix"
97 if [ "$restart" == "yes" ]; then
98 debug "Starting ldap server..."
99 /etc/init.d/slapd start