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.
 
 
 
 

9 rivejä
277 B

  1. ---
  2. - name: Install supervisor on centos
  3. yum: name=supervisor state=present
  4. when: ansible_os_family == 'RedHat'
  5. - name: Install supervisor on debian
  6. apt: pkg=supervisor state=present force=yes
  7. when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'