Skip to content
Snippets Groups Projects
Select Git revision
  • ab63f103c74cc53657a06b51e2e9b093f5d0eedd
  • master default
  • remove_custom_provider2
  • reduce_apk_size
  • improved_shapeshifter_errorhandler
  • pluggableTransports2
  • pluggableTransoprts
  • feature/gatewayselection
  • #8896_skip_onboarding
  • #6564_GSON_for_provider_api_models
  • #8886_add_provider
  • #8889_revise_NavigationDrawer
  • #8885_testing_ProviderManager
  • #8797_certificate_expiration
  • #8818_tests_for_drawer
  • develop
  • 0.9.9
  • 0.9.9RC1
  • 0.9.8
  • 0.9.8RC2
  • 0.9.8RC1
  • 0.9.7
  • 0.9.7RC2
  • 0.9.7RC1
  • 0.9.4_FDROID
  • 0.9.4
  • 0.9.3
  • 0.9.2
  • 0.9.2RC3
  • 0.9.2RC2
  • 0.9.2RC1
  • 0.9.1
  • 0.9.0
  • 0.8.2
  • 0.8.1
  • 0.8.0
36 results

Dockerfile

Blame
  • Forked from leap / bitmask_android
    Source project has a limited visibility.
    ldap 2.25 KiB
    #
    # 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
    
    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
    			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
    		if [ ! $test ]; then
    			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
    				info "Successfully finished ldif export of $dbsuffix"
    			else
    				warning $output
    				warning "Failed ldif export of $dbsuffix"
    			fi
    			if [ "$compress" == "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
    
    return 0