add delete exclude option

This commit is contained in:
Louis Abel 2023-05-17 17:22:29 -07:00
parent 0f6804ae01
commit 7d2ef9a553
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 10 additions and 0 deletions

View File

@ -125,6 +125,15 @@ function rsync_no_delete_staging_with_excludes() {
compose/ "${TARGET}"
}
function rsync_delete_staging_with_excludes() {
local TARGET="${1}"
local EXCLUDE="${2}"
sudo -l && rsync -vrlptDSH --chown=10004:10005 --progress --human-readable \
--exclude "${EXCLUDE}" \
--exclude Minimal \
compose/ "${TARGET}"
}
function rsync_no_delete_prod() {
local REV="${1}"
local TARGET="${2}"
@ -203,6 +212,7 @@ export -f rsync_no_delete_staging
export -f rsync_no_delete_staging_with_excludes
export -f rsync_no_delete_prod
export -f rsync_delete_staging
export -f rsync_delete_staging_with_excludes
export -f rsync_delete_prod
export -f perform_hardlink
export -f createrepo_only