diff --git a/.ansible-lint b/.ansible-lint new file mode 100644 index 0000000..33ac857 --- /dev/null +++ b/.ansible-lint @@ -0,0 +1,7 @@ +--- + +exclude_paths: + - .github/ + - meta/ + +# vi: ft=yaml diff --git a/.yamllint b/.yamllint new file mode 100644 index 0000000..4a14134 --- /dev/null +++ b/.yamllint @@ -0,0 +1,9 @@ +--- + +extends: default + +ignore: | + .github/ + meta/ + +# vi: ft=yaml diff --git a/tasks/main.yaml b/tasks/main.yaml index 9126ca6..dd06bef 100644 --- a/tasks/main.yaml +++ b/tasks/main.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 diff --git a/tasks/prereqs.yaml b/tasks/prereqs.yaml index 4ea6e96..1f141f9 100644 --- a/tasks/prereqs.yaml +++ b/tasks/prereqs.yaml @@ -4,7 +4,7 @@ ansible.builtin.apt: name: "{{ item }}" state: latest - update_cache: yes + update_cache: true with_items: - ca-certificates - curl diff --git a/tasks/repo.yaml b/tasks/repo.yaml index 7762ec0..88f6ad4 100644 --- a/tasks/repo.yaml +++ b/tasks/repo.yaml @@ -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