Skip to content

Commit

Permalink
Correction related to Amazon in docker_cmd_enable_disable_repo after …
Browse files Browse the repository at this point in the history
…PR merge
  • Loading branch information
haxorof committed Dec 8, 2024
1 parent 948caec commit 833c1ac
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ docker_cmd_enable_disable_repo:
AlmaLinux: >
type dnf && dnf config-manager --set-{{ (_item_enabled == true) | ternary('enabled', 'disabled') }} docker-ce-{{ item }}
|| yum-config-manager --{{ (_item_enabled == true) | ternary('enable', 'disable') }} docker-ce-{{ item }}
Amazon: >
type dnf && dnf config-manager --set-{{ (_item_enabled == true) | ternary('enabled', 'disabled') }} docker-ce-{{ item }}
|| yum-config-manager --{{ (_item_enabled == true) | ternary('enable', 'disable') }} docker-ce-{{ item }}
CentOS: >
type dnf && dnf config-manager --set-{{ (_item_enabled == true) | ternary('enabled', 'disabled') }} docker-ce-{{ item }}
|| yum-config-manager --{{ (_item_enabled == true) | ternary('enable', 'disable') }} docker-ce-{{ item }}
Expand Down

0 comments on commit 833c1ac

Please sign in to comment.