ansible-roles/supervisord/tasks/main.yml

18 lines
353 B
YAML
Raw Permalink Normal View History

---
2017-11-13 17:48:50 +01:00
- name: Install Supervisor
ansible.builtin.apt:
name: supervisor
2017-11-13 17:48:50 +01:00
tags:
- supervisord
2017-11-13 17:48:50 +01:00
- name: Add http configuration for Supervisor
ansible.builtin.copy:
src: http.conf
dest: /etc/supervisor/conf.d/
mode: "0644"
2023-06-28 13:22:59 +02:00
force: false
2017-11-13 17:48:50 +01:00
notify: restart supervisor
when: supervisord_enable_http | bool
2017-11-13 17:48:50 +01:00
tags:
- supervisord