Merge "Restore default log path for image prepare" into stable/ussuri

This commit is contained in:
Zuul 2020-08-26 07:12:46 +00:00 committed by Gerrit Code Review
commit 4913408a05
2 changed files with 3 additions and 4 deletions

View File

@ -588,8 +588,7 @@ class BaseImageUploader(object):
else:
raise OSError('Log output is not a file.')
except (AttributeError, OSError):
tmp_dir = tempfile.gettempdir()
log_f = os.path.join(tmp_dir, log_name)
log_f = os.path.join('/var/log', log_name)
try:
LOG.info('Ansible action starting')
ansible.AnsiblePlaybookAction(

View File

@ -1311,8 +1311,8 @@ class TestSkopeoImageUploader(base.TestCase):
override_ansible_cfg=(
"[defaults]\n"
"stdout_callback=tripleo_dense\n"
"log_path=%s/tripleo-container-image-prepare-ansible.log\n"
% os.path.dirname(logfile.name)
"log_path="
"/var/log/tripleo-container-image-prepare-ansible.log\n"
)
)