You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tasks/main.yml
+5-1
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,13 @@
11
11
when: ansible_os_family == 'Debian'
12
12
static: no
13
13
14
+
- include: setup-Archlinux.yml
15
+
when: ansible_os_family == 'Archlinux'
16
+
static: no
17
+
14
18
- name: Check if MySQL packages were installed.
15
19
set_fact:
16
-
mysql_install_packages: "{{ (rh_mysql_install_packages is defined and rh_mysql_install_packages.changed) or (deb_mysql_install_packages is defined and deb_mysql_install_packages.changed) }}"
20
+
mysql_install_packages: "{{ (rh_mysql_install_packages is defined and rh_mysql_install_packages.changed) or (deb_mysql_install_packages is defined and deb_mysql_install_packages.changed) or (arch_mysql_install_packages is defined and arch_mysql_install_packages.changed) }}"
0 commit comments