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