mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-14 10:25:24 +01:00
9 lines
200 B
YAML
9 lines
200 B
YAML
---
|
|
- name: Ensure PHP packages are installed.
|
|
yum:
|
|
name: "{{ item }}"
|
|
state: installed
|
|
enablerepo: "{{ php_enablerepo }}"
|
|
with_items: "{{ php_packages }}"
|
|
notify: restart webserver
|