1
0
Fork 0

Rudimentary script to purge 389-ds backup entries

This commit is contained in:
Luca Beltrame 2021-05-08 17:59:46 +02:00
parent 0b7b09c9ea
commit dc1e157eee
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View 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 {} \;