Skip to content

Commit 00747ab

Browse files
authored
fix: Replace include with include_tasks (leftovers) (#17)
1 parent 3512b22 commit 00747ab

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

tasks/xpack/security/elasticsearch-security.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@
7373

7474
#-----------------------------FILE BASED REALM----------------------------------------
7575

76-
- include: elasticsearch-security-file.yml
76+
- ansible.builtin.include_tasks: elasticsearch-security-file.yml
7777
when: (es_users is defined and es_users.file is defined) or (es_roles is defined and es_roles.file is defined)
7878

7979
#-----------------------------ROLE MAPPING ----------------------------------------
8080

8181
#Copy Roles files
8282
- name: Copy role_mapping.yml file for instance
8383
become: yes
84-
template:
84+
template:
8585
src: security/role_mapping.yml.j2
8686
dest: "{{ es_conf_dir }}/role_mapping.yml"
8787
owner: root

test/integration/custom-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Setup Elasticsearch with custom config files
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:

test/integration/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
- name: Setup Elasticsearch using default configuration
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch

test/integration/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Elasticsearch Xpack HTTP different keystore and truststore with password
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:

test/integration/oss-to-default-upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Deploy Elasticsearch OSS version
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:
@@ -12,7 +12,7 @@
1212
- name: Upgrade to Elasticsearch default version
1313
hosts: localhost
1414
post_tasks:
15-
- include: elasticsearch/test/integration/debug.yml
15+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
1616
roles:
1717
- elasticsearch
1818
vars:

test/integration/oss-upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Deploy Elasticsearch OSS previous version
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:
@@ -12,7 +12,7 @@
1212
- name: Deploy Elasticsearch OSS latest version
1313
hosts: localhost
1414
post_tasks:
15-
- include: elasticsearch/test/integration/debug.yml
15+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
1616
roles:
1717
- elasticsearch
1818
vars:

test/integration/oss.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Setup Elasticsearch OSS 6.x
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:

test/integration/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Elasticsearch Xpack HTTP different keystore and truststore with password
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:

test/integration/trial.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Setup Elasticsearch with security enabled and a trial license
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:

test/integration/upgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
- name: Deploy Elasticsearch previous version
33
hosts: localhost
44
post_tasks:
5-
- include: elasticsearch/test/integration/debug.yml
5+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
66
roles:
77
- elasticsearch
88
vars:
@@ -11,6 +11,6 @@
1111
- name: Deploy Elasticsearch latest version
1212
hosts: localhost
1313
post_tasks:
14-
- include: elasticsearch/test/integration/debug.yml
14+
- ansible.builtin.include_tasks: elasticsearch/test/integration/debug.yml
1515
roles:
1616
- elasticsearch

0 commit comments

Comments
 (0)