Skip to content

Commit f0f322d

Browse files
author
Colin Hoglund
committed
updated role doesnt need default
1 parent e070c0d commit f0f322d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tasks/setup-Debian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
- name: Ensure MySQL packages are installed.
1414
apt: "name={{ item }} state=installed"
15-
with_items: "{{ mysql_packages | default([]) }}"
15+
with_items: "{{ mysql_packages }}"
1616
register: deb_mysql_install_packages
1717

1818
# Because Ubuntu starts MySQL as part of the install process, we need to stop

tasks/setup-RedHat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
- name: Ensure MySQL packages are installed.
33
yum: "name={{ item }} state=installed enablerepo={{ mysql_enablerepo }}"
4-
with_items: "{{ mysql_packages | default([]) }}"
4+
with_items: "{{ mysql_packages }}"
55
register: rh_mysql_install_packages
66

77
- name: Ensure MySQL Python libraries are installed.

0 commit comments

Comments
 (0)