diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-06-16 09:07:53 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-06-16 09:07:53 +0000 |
commit | 3c9aa3543b221a16cbe8a5cfce32e8a080f69e92 (patch) | |
tree | cf57b026e1e906cfe815bf9203d2952837ef56d3 /puppet/services/nova-api.yaml | |
parent | 3fba97012cb75abecb3cf59104cc6693aeb7438b (diff) | |
parent | abf4444d90b6f01342938ad0684e55678fa3b579 (diff) |
Merge "Ignore case for bootstrap node checks"
Diffstat (limited to 'puppet/services/nova-api.yaml')
-rw-r--r-- | puppet/services/nova-api.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/services/nova-api.yaml b/puppet/services/nova-api.yaml index 835edf0a..fe2f2946 100644 --- a/puppet/services/nova-api.yaml +++ b/puppet/services/nova-api.yaml @@ -210,7 +210,7 @@ outputs: register: bootstrap_node - name: set is_bootstrap_node fact tags: common - set_fact: is_bootstrap_node={{bootstrap_node.stdout == ansible_hostname}} + set_fact: is_bootstrap_node={{bootstrap_node.stdout|lower == ansible_hostname|lower}} - name: Extra migration for nova tripleo/+bug/1656791 tags: step0,pre-upgrade when: is_bootstrap_node |