Don't fail hard when facter cache doesn't work correctly

Since the facter cache is supposed to be a help but not necessarily a
hard requirement, let's make sure the tasks don't fail if something goes
wrong. We should output the error if the facter execution fails, but we
don't want to always output it.

Change-Id: I58d42c74295f031b260c0b67dbc12336fc31db1f
Related-Bug: #1852606
(cherry picked from 79f41d1d41a23b8b851410a912fd352c5e6fac32)
This commit is contained in:
Alex Schultz 2019-11-22 14:08:56 -07:00
parent 5f197bb21c
commit da384b5bff
1 changed files with 9 additions and 0 deletions

View File

@ -335,14 +335,23 @@
state: absent state: absent
ignore_errors: True ignore_errors: True
- name: Pre-cache facts - name: Pre-cache facts
check_mode: false
command: facter --config /var/lib/container-puppet/puppetlabs/facter.conf command: facter --config /var/lib/container-puppet/puppetlabs/facter.conf
no_log: True no_log: True
ignore_errors: True ignore_errors: True
register: _facter_cache_run
- name: Facter error output when failed
check_mode: false
debug:
msg: "{{ _facter_cache_run.stderr }}"
when: _facter_cache_run is failed
- name: Sync cached facts - name: Sync cached facts
check_mode: false
synchronize: synchronize:
src: /opt/puppetlabs/ src: /opt/puppetlabs/
dest: /var/lib/container-puppet/puppetlabs/ dest: /var/lib/container-puppet/puppetlabs/
delegate_to: "{{ inventory_hostname }}" delegate_to: "{{ inventory_hostname }}"
when: _facter_cache_run is succeeded
###################################### ######################################
# Generate config via docker-puppet.py # Generate config via docker-puppet.py