Merge "Update ro excludes" into stable/stein

This commit is contained in:
Zuul 2020-02-13 21:28:39 +00:00 committed by Gerrit Code Review
commit bc5a54bdc6
1 changed files with 4 additions and 1 deletions

View File

@ -355,7 +355,10 @@ if not os.path.exists(sh_script):
# Exclude read-only mounted directories/files which we do not want # Exclude read-only mounted directories/files which we do not want
# to copy or delete. # 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 for ro in $ro_files; do
if [ -e "$ro" ]; then if [ -e "$ro" ]; then
exclude_files+=" --exclude=$ro" exclude_files+=" --exclude=$ro"