You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
- - 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'
|