mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 03:40:18 +01:00
8 lines
217 B
YAML
Executable file
8 lines
217 B
YAML
Executable file
---
|
|
- name: Ensure PHP packages are installed.
|
|
yum:
|
|
name: "{{ item }}"
|
|
state: "{{ php_packages_state }}"
|
|
enablerepo: "{{ php_enablerepo }}"
|
|
with_items: "{{ php_packages }}"
|
|
notify: restart webserver
|