Skip to content

Commit f74dd41

Browse files
author
Tobias Richter
committed
Migrate from include to include_tasks
1 parent b129209 commit f74dd41

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tasks/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
register: aem_cms_quickstart_file
3232

3333
- name: Download AEM quickstart.
34-
include: "download/{{ aem_cms_install_source }}.yml"
34+
include_tasks: "download/{{ aem_cms_install_source }}.yml"
3535
when: not aem_cms_quickstart_file.stat.exists or
3636
(aem_cms_quickstart_sha1 is defined and
3737
(aem_cms_quickstart_sha1 | lower) != aem_cms_quickstart_file.stat.checksum)
@@ -73,17 +73,17 @@
7373
when: aem_cms_remove_download
7474

7575
- name: Setup AEM systemd unit.
76-
include: systemd.yml
76+
include_tasks: systemd.yml
7777
when: ansible_service_mgr == 'systemd'
7878

7979
- name: Setup AEM init script.
80-
include: sysvinit.yml
80+
include_tasks: sysvinit.yml
8181
when: ansible_service_mgr == 'sysvinit' or ansible_service_mgr == 'upstart' or ansible_service_mgr == 'service'
8282

8383
- name: Setup crx-quickstart/install.
84-
include: quickstart_install.yml
84+
include_tasks: quickstart_install.yml
8585
when: aem_cms_quickstart_install_fileglob is defined
8686

8787
- name: Setup i386 support for XMPFilesProcessor.
88-
include: xmp_i386.yml
88+
include_tasks: xmp_i386.yml
8989
when: ansible_architecture == 'x86_64'

0 commit comments

Comments
 (0)