diff options
author | Alex Schultz <aschultz@redhat.com> | 2017-06-15 13:59:31 -0600 |
---|---|---|
committer | Alex Schultz <aschultz@redhat.com> | 2017-06-15 13:59:31 -0600 |
commit | abf4444d90b6f01342938ad0684e55678fa3b579 (patch) | |
tree | 87292168b111473e2098e56e5ecbf1910e7f6e74 /puppet | |
parent | d95394a01c47c46e8ffc3da5e9e4054ffffdc2ee (diff) |
Ignore case for bootstrap node checks
The bootstrap_nodeid can have capital letters while the hostname may
not. In puppet we use downcase for this comparison, so let's follow a
similar pattern for scripts from THT.
Change-Id: I8a0bec4a6f3ed0b4f2289cbe7023344fb284edf7
Closes-Bug: #16998201
Diffstat (limited to 'puppet')
-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 |