-
Notifications
You must be signed in to change notification settings - Fork 0
/
ldap
76 lines (67 loc) · 1.96 KB
/
ldap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
getconf dest /var/backups/ldap
getconf tmp /var/backups/ldap.tmp
getconf compress yes
getconf SLAPCAT /usr/sbin/slapcat
getconf options "-f /etc/ldap/slapd.conf"
getconf suffixes
error=0
now="$(date +"%Y%m%d")"
# Decide if the handler should operate on a vserver or on the host.
# In the former case, check that $vsname exists and is running.
usevserver=no
vroot=''
if [ $vservers_are_available = yes ]; then
if [ -n "$vsname" ]; then
# does it exist ?
if ! vservers_exist "$vsname" ; then
fatal "The vserver given in vsname ($vsname) does not exist."
fi
# is it running ?
vservers_running $vsname || fatal "The vserver $vsname is not running."
# everything ok
info "Using vserver '$vsname'."
usevserver=yes
vroot="$VROOTDIR/$vsname"
else
info "No vserver name specified, actions will be performed on the host."
fi
fi
cd $vroot$src
for suffix in $suffixes
do
echo $suffix
ret=`mkdir -p $vroot$tmp/$suffix 2>&1`
code=$?
if [ "$ret" ]; then
debug "$ret"
fi
if [ $code != 0 ]; then
error "command failed mkdir -p $vroot$tmp/$suffix"
fi
if [ $usevserver = yes ]
then
ret=`$VSERVER $vsname exec $SLAPCAT $options -b $suffix | bzip2 > $tmp/$suffix/$suffix-$now.ldif.bz2 2>&1`
else
echo "$SLAPCAT $options -b $suffix |bzip2 > $tmp/$suffix/$suffix-$now.ldif.bz2"
ret=`$SLAPCAT $options -b $suffix | bzip2 > $tmp/$suffix/$suffix-$now.ldif.bz2 2>&1`
fi
code=$?
if [ "$ret" ]; then
debug "$ret"
fi
if [ $code != 0 ]; then
error "command failed -- $SLAPCAT $options -b $suffix > $vroot$tmp/$suffix/$suffix-$now.ldif.bz2"
error=1
fi
done
if [ $error -eq 1 ]; then
echo "Error: because of earlier errors, we are leaving ldap backups in $vroot$tmp instead of $vroot$dest"
else
if [ -d $vroot$dest -a -d $vroot$tmp ]; then
rm -rf $vroot$dest
fi
if [ -d $vroot$tmp ]; then
mv $vroot$tmp $vroot$dest
fi
fi
exit 0