2014-04-22 14:34:37 +02:00
|
|
|
---
|
2018-04-27 05:07:42 +02:00
|
|
|
- name: Ensure Apache is installed (via yum).
|
2014-10-06 02:13:00 +02:00
|
|
|
yum:
|
|
|
|
name: "{{ item }}"
|
2017-01-05 22:39:55 +01:00
|
|
|
state: "{{ apache_packages_state }}"
|
2014-10-06 02:13:00 +02:00
|
|
|
enablerepo: "{{ apache_enablerepo }}"
|
2016-02-29 06:32:02 +01:00
|
|
|
with_items: "{{ apache_packages }}"
|
2018-04-27 05:07:42 +02:00
|
|
|
when: ansible_distribution != 'Fedora'
|
|
|
|
|
|
|
|
- name: Ensure Apache is installed (via dnf).
|
|
|
|
dnf:
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: "{{ apache_packages_state }}"
|
|
|
|
enablerepo: "{{ apache_enablerepo }}"
|
|
|
|
with_items: "{{ apache_packages }}"
|
|
|
|
when: ansible_distribution == 'Fedora'
|