ansible-roles/supervisord/tasks/main.yml
Jérémy Lecour ee21973371
All checks were successful
Ansible Lint |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |2777|524|2253|2462|:+1: Reference build: <a href="https://jenkins.evolix.org/job/gitea/job/ansible-roles/job/unstable/223//ansiblelint">Evolix » ansible-roles » unstable #223</a>
gitea/ansible-roles/pipeline/head This commit looks good
Use FQCN
Fully Qualified Collection Name
2023-03-20 23:33:19 +01:00

18 lines
350 B
YAML

---
- name: Install Supervisor
ansible.builtin.apt:
name: supervisor
tags:
- supervisord
- name: Add http configuration for Supervisor
ansible.builtin.copy:
src: http.conf
dest: /etc/supervisor/conf.d/
mode: "0644"
force: no
notify: restart supervisor
when: supervisord_enable_http | bool
tags:
- supervisord