mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 00:30:18 +01:00
Fix
This commit is contained in:
parent
d15cb71b47
commit
ae3d9b3ee3
1 changed files with 2 additions and 2 deletions
|
@ -6,6 +6,6 @@
|
|||
apt: "name={{ apache_packages }} state={{ apache_packages_state }}"
|
||||
|
||||
- name: Ensure Apache packages are installed on Debian
|
||||
apt: "name={{ package }} state={{ state }}"
|
||||
with_items: "{{ apache_packages_extra }}"
|
||||
apt: "name={{ item.package }} state={{ item.state }}"
|
||||
loop: "{{ apache_packages_extra }}"
|
||||
when: apache_packages_extra is defined and apache_packages_extra | length > 0
|
||||
|
|
Loading…
Reference in a new issue