| 1234567891011121314151617181920212223 |
- # DB engine
- DBENGINE="openldap"
- # Backup directory
- BACKUPDIR="/var/backups/autodbbackup/${DBENGINE}"
- # Which day do you want weekly backups? (1 to 7 where 1 is Monday)
- # When set to 0, weekly backups are disabled
- DOWEEKLY=0
- # Which day do you want monthly backups?
- # When set to 0, monthly backups are disabled
- DOMONTHLY=0
- # Backup retention count for daily backups, older backups are removed.
- BRDAILY=7
- # Backup files extension
- EXT="ldif"
- # Compression tool
- COMP="zstd"
|