only enable openssl if necessary
This commit is contained in:
		
							
								
								
									
										23
									
								
								roles/matrix-base/tasks/util/ensure_openssl_installed.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								roles/matrix-base/tasks/util/ensure_openssl_installed.yml
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,23 @@
 | 
			
		||||
 | 
			
		||||
# 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'
 | 
			
		||||
		Reference in New Issue
	
	Block a user