Linting
This commit is contained in:
parent
4aaf5e5891
commit
581d3fb71c
7
.ansible-lint
Normal file
7
.ansible-lint
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
|
||||
exclude_paths:
|
||||
- .github/
|
||||
- meta/
|
||||
|
||||
# vi: ft=yaml
|
9
.yamllint
Normal file
9
.yamllint
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
|
||||
extends: default
|
||||
|
||||
ignore: |
|
||||
.github/
|
||||
meta/
|
||||
|
||||
# vi: ft=yaml
|
@ -10,7 +10,7 @@
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
state: latest
|
||||
update_cache: yes
|
||||
update_cache: true
|
||||
with_items:
|
||||
- docker-ce
|
||||
- docker-ce-cli
|
||||
|
@ -4,7 +4,7 @@
|
||||
ansible.builtin.apt:
|
||||
name: "{{ item }}"
|
||||
state: latest
|
||||
update_cache: yes
|
||||
update_cache: true
|
||||
with_items:
|
||||
- ca-certificates
|
||||
- curl
|
||||
|
@ -10,24 +10,20 @@
|
||||
|
||||
- name: Download the Docker key
|
||||
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
|
||||
args:
|
||||
warn: no
|
||||
register: cmd_output
|
||||
|
||||
#- name: Debug key download
|
||||
# ansible.builtin.debug:
|
||||
# var: cmd_output
|
||||
warn: false
|
||||
|
||||
- name: Create the repository file
|
||||
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
|
||||
args:
|
||||
warn: no
|
||||
register: cmd_output
|
||||
|
||||
#- name: Debug repo file
|
||||
# ansible.builtin.debug:
|
||||
# var: cmd_output
|
||||
warn: false
|
||||
|
Loading…
x
Reference in New Issue
Block a user