Skip to content

Commit

Permalink
fix: adhire to linter
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasPeters committed Oct 30, 2024
1 parent 15ed9d1 commit 0699927
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ansible/roles/docker/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

- name: "Add Docker apt repository"
ansible.builtin.deb822_repository: # See https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository
name: docker
types: deb
name: "docker"
types: "deb"
uris: "https://download.docker.com/linux/{{ ansible_distribution | lower }}"
suites: '{{ ansible_distribution_release }}'
components: stable
architectures: amd64
suites: "{{ ansible_distribution_release }}"
components: "stable"
architectures: "amd64"
signed_by: "https://download.docker.com/linux/ubuntu/gpg"

- name: "Install Docker packages"
Expand Down

0 comments on commit 0699927

Please sign in to comment.