Matrix Docker Ansible eploy
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.
 
 

24 lines
493 B

  1. # This is for both CentOS 7 and 8
  2. - name: Ensure openssl installed (CentOS)
  3. yum:
  4. name:
  5. - openssl
  6. state: latest
  7. when: ansible_distribution == 'CentOS'
  8. # This is for both Debian and Raspbian
  9. - name: Ensure openssl installed (Debian/Raspbian)
  10. apt:
  11. name:
  12. - openssl
  13. state: latest
  14. when: ansible_os_family == 'Debian'
  15. - name: Ensure openssl installed (Archlinux)
  16. pacman:
  17. name:
  18. - openssl
  19. state: latest
  20. when: ansible_distribution == 'Archlinux'