chore: Linting.

This commit is contained in:
Laur Ivan 2023-04-29 20:51:04 +02:00
parent d47b7d99ab
commit 56e4e74fac

View File

@ -8,7 +8,7 @@
register: "docker_sock_stat" register: "docker_sock_stat"
- name: "Create docker.sock" - name: "Create docker.sock"
ansible.builtin.raw: touch /var/run/docker.sock ansible.builtin.raw: "touch /var/run/docker.sock"
become: true become: true
changed_when: false changed_when: false
when: "not docker_sock_stat.stat.exists" when: "not docker_sock_stat.stat.exists"
@ -21,7 +21,7 @@
when: "not docker_sock_stat.stat.exists" when: "not docker_sock_stat.stat.exists"
- name: "Update apt cache." - name: "Update apt cache."
ansible.builtin.apt: update_cache=yes cache_valid_time=600 ansible.builtin.apt: "update_cache=yes cache_valid_time=600"
when: "ansible_os_family == 'Debian'" when: "ansible_os_family == 'Debian'"
- name: "Install python requests" - name: "Install python requests"