File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
# Variable configuration.
3
- - include : variables.yml
3
+ - include_tasks : variables.yml
4
4
5
5
# Setup/install tasks.
6
- - include : setup-RedHat.yml
6
+ - include_tasks : setup-RedHat.yml
7
7
when : ansible_os_family == 'RedHat'
8
- static : no
9
8
10
- - include : setup-Debian.yml
9
+ - include_tasks : setup-Debian.yml
11
10
when : ansible_os_family == 'Debian'
12
- static : no
13
11
14
- - include : setup-Archlinux.yml
12
+ - include_tasks : setup-Archlinux.yml
15
13
when : ansible_os_family == 'Archlinux'
16
- static : no
17
14
18
15
- name : Check if MySQL packages were installed.
19
16
set_fact :
22
19
or (arch_mysql_install_packages is defined and arch_mysql_install_packages.changed) }}"
23
20
24
21
# Configure MySQL.
25
- - include : configure.yml
26
- - include : secure-installation.yml
27
- - include : databases.yml
28
- - include : users.yml
29
- - include : replication.yml
22
+ - include_tasks : configure.yml
23
+ - include_tasks : secure-installation.yml
24
+ - include_tasks : databases.yml
25
+ - include_tasks : users.yml
26
+ - include_tasks : replication.yml
You can’t perform that action at this time.
0 commit comments