Fix typo on tripleo_bootstrap_release_version_package condition

Deployments on RHEL are failing to install the undercloud/
standalone:
'tripleo_bootstrao_release_version_package' is undefined

This review fixes the condition to check
'tripleo_bootstrap_release_version_package'.

Change-Id: I70227125b012aef7a2618deb860337c10233aa90
This commit is contained in:
Ronelle Landy 2020-10-16 11:28:04 -04:00
parent d99c189d9b
commit 956bc4efca
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@
state: present
when:
- (ansible_distribution | lower) == 'redhat'
- (tripleo_bootstrao_release_version_package |list | length) > 0
- (tripleo_bootstrap_release_version_package |list | length) > 0
- name: Deploy required packages to bootstrap TripleO
become: true