Skip to content

Commit

Permalink
fix missing replace for x86_64 > amd64
Browse files Browse the repository at this point in the history
thanks to @shark4ce for taking the time to test, debug and offer a solution #1472.
  • Loading branch information
t3chn0m4g3 authored Feb 6, 2024
1 parent 2fe2d59 commit bd4df39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installer/install/tpot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@
- name: Add Docker Engine repository (Debian, Raspbian, Ubuntu)
apt_repository:
filename: docker
repo: "deb [arch={{ ansible_architecture | replace('aarch64', 'arm64') }} signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
repo: "deb [arch={{ ansible_architecture | replace('aarch64', 'arm64') | replace('x86_64', 'amd64') }} signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} stable"
state: present
update_cache: yes
when: ansible_distribution in ["Debian", "Raspbian", "Ubuntu"]
Expand Down

0 comments on commit bd4df39

Please sign in to comment.