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

15 lines
310 B
YAML
Raw Normal View History

---
- 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