mirror of
https://github.com/frappe/bench.git
synced 2024-11-12 08:16:28 +00:00
9 lines
277 B
YAML
9 lines
277 B
YAML
---
|
|
- name: Install supervisor on centos
|
|
yum: name=supervisor state=present
|
|
when: ansible_os_family == 'RedHat'
|
|
|
|
- name: Install supervisor on debian
|
|
apt: pkg=supervisor state=present force=yes
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|