Merge "Update ro excludes" into stable/rocky

This commit is contained in:
Zuul 2020-02-19 22:00:52 +00:00 committed by Gerrit Code Review
commit 85b43d6a41
1 changed files with 4 additions and 1 deletions

View File

@ -286,7 +286,10 @@ with open(sh_script, 'w') as script_file:
# 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"