This commit is contained in:
Corbin Bartsch 2022-09-29 20:32:49 -04:00
parent 4aaf5e5891
commit 581d3fb71c
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212
5 changed files with 28 additions and 16 deletions

7
.ansible-lint Normal file
View File

@ -0,0 +1,7 @@
---
exclude_paths:
- .github/
- meta/
# vi: ft=yaml

9
.yamllint Normal file
View File

@ -0,0 +1,9 @@
---
extends: default
ignore: |
.github/
meta/
# vi: ft=yaml

View File

@ -10,7 +10,7 @@
ansible.builtin.apt: ansible.builtin.apt:
name: "{{ item }}" name: "{{ item }}"
state: latest state: latest
update_cache: yes update_cache: true
with_items: with_items:
- docker-ce - docker-ce
- docker-ce-cli - docker-ce-cli

View File

@ -4,7 +4,7 @@
ansible.builtin.apt: ansible.builtin.apt:
name: "{{ item }}" name: "{{ item }}"
state: latest state: latest
update_cache: yes update_cache: true
with_items: with_items:
- ca-certificates - ca-certificates
- curl - curl

View File

@ -10,24 +10,20 @@
- name: Download the Docker key - name: Download the Docker key
ansible.builtin.shell: ansible.builtin.shell:
cmd: curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg cmd: "curl -fsSL https://download.docker.com/linux/debian/gpg \
| sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg"
creates: /etc/apt/keyrings/docker.gpg creates: /etc/apt/keyrings/docker.gpg
args: args:
warn: no warn: false
register: cmd_output
#- name: Debug key download
# ansible.builtin.debug:
# var: cmd_output
- name: Create the repository file - name: Create the repository file
ansible.builtin.shell: ansible.builtin.shell:
cmd: echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null cmd: "echo \"deb [arch=$(dpkg --print-architecture) \
signed-by=/etc/apt/keyrings/docker.gpg] \
https://download.docker.com/linux/debian \
$(lsb_release -cs) stable\" \
| sudo tee /etc/apt/sources.list.d/docker.list \
> /dev/null"
creates: /etc/apt/sources.list.d/docker.list creates: /etc/apt/sources.list.d/docker.list
args: args:
warn: no warn: false
register: cmd_output
#- name: Debug repo file
# ansible.builtin.debug:
# var: cmd_output