mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2024-11-14 09:20:20 +01:00
7 lines
195 B
YAML
7 lines
195 B
YAML
---
|
|
- name: Update apt cache.
|
|
apt: update_cache=yes cache_valid_time=86400
|
|
|
|
- name: Ensure Apache is installed on Debian.
|
|
apt: "name={{ item }} state=installed"
|
|
with_items: apache_packages
|