Skip to content

Commit

Permalink
Fix debian 10 docker bugs. (adoptium#3269)
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 authored Nov 27, 2023
1 parent 12fd314 commit 0f44a05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
package:
name:
- docker.io
state: latest # TODO: Package installs should not use latest
state: present
use: auto # automatic select package manager to use yum, apt and so on
when: ((ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20) or ansible_distribution == "Debian")
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version | int >= 20)

- name: Install for SLES15 # zypper does not support in package module
include_tasks: sles.yml
Expand Down

0 comments on commit 0f44a05

Please sign in to comment.