1 # -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
3 HELPERS="$HELPERS ldap:ldap_database_backup"
7 checkBox "ldap action wizard" "check options (slapcat OR ldapsearch)" \
8 "slapcat" "export ldif using slapcat" on \
9 "ldapsearch" "export ldif using ldapsearch" off \
10 "compress" "compress the ldif output files" on
12 compress="compress = off"
13 method="method = <unset>"
14 restart="restart = no"
17 [ $status = 1 ] && return;
19 for opt in $result; do
21 '"compress"') compress="compress = on";;
23 method="method = slapcat"
24 [ "$_RESTART" == "yes" ] && restart="restart = yes"
27 method="method = ldapsearch"
28 inputBox "ldap action wizard" "ldapsearch requires authentication. Specify here what password file to use. It must have the password with no trailing return and it should not be world readable."
30 passwordfile="passwordfile = $REPLY"
31 inputBox "ldap action wizard" "ldapsearch requires authentication. Specify here what DN to bind as:"
33 binddn="binddn = $REPLY"
34 require_packages ldap-utils
38 get_next_filename $configdirectory/30.ldap
39 cat > $next_filename <<EOF
45 # backupdir = /var/backups/ldap
46 # conf = /etc/ldap/slapd.conf
49 chmod 600 $next_filename
57 for backend in `grep -e "^backend" /etc/ldap/slapd.conf | awk '{print $2}'`; do
58 if [ "$backend" == "bdb" -a "$bdb" == "no" ]; then
60 elif [ "$backend" == "ldbm" -a "$ldbm" == "no" ]; then
65 if [ "$bdb" == "yes" -a "$ldbm" == "no" ]; then
66 msgBox "ldap action wizard" "It looks like the backend in your slapd.conf is set to BDB. If this is not the case, exit this wizard! From this point on, we will assume BDB backend, which might have disasterious consequences if this is incorrect."
69 elif [ "$ldbm" == "yes" ]; then
70 msgBox "ldap action wizard" "It looks like the backend in your slapd.conf is set to LDBM. Because of this, you will have less options (because it is not safe to use slapcat while slapd is running LDBM)."
74 msgBox "ldap action wizard" "I couldn't find any backends in your slapd.conf. Bailing out."