Merge "Update ro excludes" into stable/train

This commit is contained in:
Zuul 2020-02-19 06:37:54 +00:00 committed by Gerrit Code Review
commit 82cd572931
1 changed files with 4 additions and 1 deletions

View File

@ -98,7 +98,10 @@ if [ -z "$NO_ARCHIVE" ]; then
# Exclude read-only mounted directories/files which we do not want
# to copy or delete.
ro_files="/etc/puppetlabs/ /opt/puppetlabs/"
ro_files="/etc/puppetlabs/ /opt/puppetlabs/ /etc/pki/ca-trust/extracted "
ro_files+="/etc/pki/ca-trust/source/anchors /etc/pki/tls/certs/ca-bundle.crt "
ro_files+="/etc/pki/tls/certs/ca-bundle.trust.crt /etc/pki/tls/cert.pem "
ro_files+="/etc/hosts /etc/localtime"
for ro in $ro_files; do
if [ -e "$ro" ]; then
exclude_files+=" --exclude=$ro"