mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	Merge pull request #3397 from holta/mongodb_mint-21_fix
mongodb/tasks/install.yml: Force libssl1.1 on is_linuxmint_21 too (for Sugarizer)
This commit is contained in:
		
						commit
						e46e34679e
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -115,20 +115,20 @@
 | 
				
			||||||
    apt_repository:
 | 
					    apt_repository:
 | 
				
			||||||
      repo: deb http://security.ubuntu.com/ubuntu focal-security main
 | 
					      repo: deb http://security.ubuntu.com/ubuntu focal-security main
 | 
				
			||||||
      #filename: focal-security    # If filename focal-security.list is preferred
 | 
					      #filename: focal-security    # If filename focal-security.list is preferred
 | 
				
			||||||
    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=')
 | 
					    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=') or is_linuxmint_21
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  - name: Install libssl1.1 if Ubuntu 22.04+ (required by MongoDB below)
 | 
					  - name: Install libssl1.1 if Ubuntu 22.04+ (required by MongoDB below)
 | 
				
			||||||
    package:
 | 
					    package:
 | 
				
			||||||
      name: libssl1.1
 | 
					      name: libssl1.1
 | 
				
			||||||
      state: present
 | 
					      state: present
 | 
				
			||||||
    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=')
 | 
					    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=') or is_linuxmint_21
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  - name: Remove source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+
 | 
					  - name: Remove source/repo "deb http://security.ubuntu.com/ubuntu focal-security main" at /etc/apt/sources.list.d/security_ubuntu_com_ubuntu.list if Ubuntu 22.04+
 | 
				
			||||||
    apt_repository:
 | 
					    apt_repository:
 | 
				
			||||||
      repo: deb http://security.ubuntu.com/ubuntu focal-security main
 | 
					      repo: deb http://security.ubuntu.com/ubuntu focal-security main
 | 
				
			||||||
      state: absent
 | 
					      state: absent
 | 
				
			||||||
      #filename: focal-security    # 100% IGNORED during repo deletion
 | 
					      #filename: focal-security    # 100% IGNORED during repo deletion
 | 
				
			||||||
    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=')
 | 
					    when: is_ubuntu and os_ver is version('ubuntu-2204', '>=') or is_linuxmint_21
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  # # Debian 10 aarch64 might work below but is blocked in main.yml
 | 
					  # # Debian 10 aarch64 might work below but is blocked in main.yml
 | 
				
			||||||
  # - name: Use mongodb-org's Ubuntu focal repo for RasPiOS-aarch64
 | 
					  # - name: Use mongodb-org's Ubuntu focal repo for RasPiOS-aarch64
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue