Fix bare variable boolean
This commit is contained in:
parent
5da76a85c7
commit
9580a08f4d
1 changed files with 2 additions and 2 deletions
|
|
@ -82,7 +82,7 @@
|
||||||
# If playbook runs too fast, Native commands could fail as the Native Realm is not yet up
|
# If playbook runs too fast, Native commands could fail as the Native Realm is not yet up
|
||||||
- name: Wait 15 seconds for the Native Realm to come up
|
- name: Wait 15 seconds for the Native Realm to come up
|
||||||
command: sleep 15
|
command: sleep 15
|
||||||
when: manage_native_realm
|
when: manage_native_realm | bool
|
||||||
|
|
||||||
- name: activate-license
|
- name: activate-license
|
||||||
include: ./xpack/security/elasticsearch-xpack-activation.yml
|
include: ./xpack/security/elasticsearch-xpack-activation.yml
|
||||||
|
|
@ -91,7 +91,7 @@
|
||||||
#perform security actions here now elasticsearch is started
|
#perform security actions here now elasticsearch is started
|
||||||
- name: include xpack/security/elasticsearch-security-native.yml
|
- name: include xpack/security/elasticsearch-security-native.yml
|
||||||
include: ./xpack/security/elasticsearch-security-native.yml
|
include: ./xpack/security/elasticsearch-security-native.yml
|
||||||
when: manage_native_realm
|
when: manage_native_realm | bool
|
||||||
|
|
||||||
#Templates done after restart - handled by flushing the handlers. e.g. suppose user removes security on a running node and doesn't specify es_api_basic_auth_username and es_api_basic_auth_password. The templates will subsequently not be removed if we don't wait for the node to restart.
|
#Templates done after restart - handled by flushing the handlers. e.g. suppose user removes security on a running node and doesn't specify es_api_basic_auth_username and es_api_basic_auth_password. The templates will subsequently not be removed if we don't wait for the node to restart.
|
||||||
#We also do after the native realm to ensure any changes are applied here first and its denf up.
|
#We also do after the native realm to ensure any changes are applied here first and its denf up.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue