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
487 B
24 lines
487 B
3 years ago
|
|
||
|
# This is for both CentOS 7 and 8
|
||
|
- name: Ensure openssl installed (CentOS)
|
||
|
yum:
|
||
|
name:
|
||
|
- openssl
|
||
|
state: latest
|
||
|
when: ansible_distribution == 'CentOS'
|
||
|
|
||
|
# This is for both Debian and Raspbian
|
||
|
- name: Ensure fuse installed (Debian/Raspbian)
|
||
|
apt:
|
||
|
name:
|
||
|
- openssl
|
||
|
state: latest
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
|
||
|
- name: Ensure fuse installed (Archlinux)
|
||
|
pacman:
|
||
|
name:
|
||
|
- openssl
|
||
|
state: latest
|
||
|
when: ansible_distribution == 'Archlinux'
|