Merge "Ensure bootstrap packages are correctly installed" into stable/wallaby

This commit is contained in:
Zuul 2022-07-11 20:48:41 +00:00 committed by Gerrit Code Review
commit a4281cd5b0
1 changed files with 6 additions and 0 deletions

View File

@ -59,3 +59,9 @@
register: tripleo_bootstrap_packages_bootstrap_result
when:
- rpm_query_result.rc > 0
- name: Ensure packages are actually well installed
command: "rpm -V {{ tripleo_bootstrap_packages_bootstrap | join(' ') }}"
register: rpm_verify_result
failed_when:
- "'%verify' in rpm_verify_result.stderr"