mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-09 23:18:33 +01:00
9 lines
158 B
Bash
9 lines
158 B
Bash
#!/bin/bash
|
|
|
|
DIR=/home/sheppy/slapd_backup/
|
|
BACKUP_NAME=backup_$(date +%Y%m%d).ldif
|
|
mkdir -p $DIR
|
|
|
|
slapcat > ${DIR}${BACKUP_NAME}
|
|
chown -R sheppy:sheppy $DIR
|