set vars and switches for removing TLS operation
This commit is contained in:
parent
0246568a6c
commit
85b02e8821
@ -43,6 +43,7 @@ logfile="$scriptPath/${scriptName%.*}.log"
|
||||
# with '.params' extension
|
||||
encParams="$scriptPath/${scriptName%.*}.params"
|
||||
# backup mode by default
|
||||
unset removeTLS
|
||||
unset backupFile
|
||||
extract=false
|
||||
decrypt=false
|
||||
@ -322,6 +323,10 @@ while [ $# -gt 0 ]; do
|
||||
encParams="$2"
|
||||
shift
|
||||
;;
|
||||
--removeTLS)
|
||||
# remove olcTLS entries from cn=config
|
||||
removeTLS=true
|
||||
;;
|
||||
*)
|
||||
printf "%s\nUnknown option: %s\n" "$err" "$1"
|
||||
printf "Use '--help' for valid options.\n\n%s" "$norm"
|
||||
@ -555,7 +560,7 @@ elif [ $extract = 'false' ]; then
|
||||
exitError 6 'Unable to copy backup archive from container to host.'
|
||||
fi
|
||||
logInfo 'done'
|
||||
logInfo "Backup file: ${outputLocation%/}/ldap-${fileDate}.tar.gz"
|
||||
logInfo "Backup file: $outputLocation/ldap-${fileDate}.tar.gz"
|
||||
|
||||
## cleanup and log success
|
||||
cleanup
|
||||
|
Loading…
Reference in New Issue
Block a user