update ab-openldap scripts

This commit is contained in:
Asif Bacchus
2020-03-13 02:28:00 -06:00
parent 220f0bdd23
commit ffd336e218
3 changed files with 815 additions and 47 deletions
+27
View File
@@ -0,0 +1,27 @@
#######
### openLDAP backup script parameters file
#######
### This file should be protected since it contains the password used to
### encrypt your backup files!
### recommend at least:
### chown root:root backup.parameters
### chmod 600 backup.parameters
# password used to encrypt backup
password='myPassword'
### encryption options
# encryption cipher
# use 'openssl enc --ciphers' to see which ciphers are supported by your
# openSSL installation
encryptionCipher='aes-256-cbc'
# number of iterations used to derive the private key, higher is better but
# more CPU intensive - minimum of 20000 recommended
encryptionIterations=25000
#EOF