Rudimentary script to purge 389-ds backup entries
This commit is contained in:
parent
0b7b09c9ea
commit
dc1e157eee
1 changed files with 14 additions and 0 deletions
14
sysadmin/purge_old_ldap.sh
Normal file
14
sysadmin/purge_old_ldap.sh
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
set -o errexit
|
||||||
|
set -o nounset
|
||||||
|
|
||||||
|
INSTANCE=$1
|
||||||
|
|
||||||
|
find "/var/lib/dirsrv/slapd-${INSTANCE}/bak/" \
|
||||||
|
-maxdepth 1 \
|
||||||
|
-type d \
|
||||||
|
-name "${INSTANCE}"-\* \
|
||||||
|
-mtime +7 \
|
||||||
|
-exec rm -rf {} \;
|
Loading…
Add table
Reference in a new issue