agaric-coop/box/provisioning/roles/geerlingguy.blackfire/tasks/main.yml

14 lines
310 B
YAML

---
- include: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
- include: setup-Debian.yml
when: ansible_os_family == 'Debian'
- name: Ensure Blackfire packages are installed.
package:
name: "{{ blackfire_packages }}"
state: present
notify:
- restart webserver
- restart php-fpm