ansible-zabbix/apache/tasks/setup-Debian.yml
2017-01-17 17:59:08 +01:00

8 lines
202 B
YAML

---
- name: Update apt cache.
apt: update_cache=yes cache_valid_time=3600
- name: Ensure Apache is installed on Debian.
apt: "name={{ item }} state=installed"
with_items: "{{ apache_packages }}"