fix: suppress false positive ansible lint warning 503
This commit is contained in:
parent
18e317a534
commit
69cf188426
3 changed files with 3 additions and 3 deletions
|
@ -138,7 +138,7 @@
|
||||||
force: no
|
force: no
|
||||||
register: wiringPi_download
|
register: wiringPi_download
|
||||||
|
|
||||||
- name: Install wiringPi library
|
- name: Install wiringPi library # noqa 503
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
state: present
|
state: present
|
||||||
deb: "/home/{{ gatekeeper_user }}/wiringpi-latest.deb"
|
deb: "/home/{{ gatekeeper_user }}/wiringpi-latest.deb"
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
dest: /etc/apt/sources.list.d/docker.list
|
dest: /etc/apt/sources.list.d/docker.list
|
||||||
register: apt_repo
|
register: apt_repo
|
||||||
|
|
||||||
- name: Update package cache
|
- name: Update package cache # noqa 503
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
when: apt_repo.changed
|
when: apt_repo.changed
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
src: files/apt-preference-99nginx
|
src: files/apt-preference-99nginx
|
||||||
dest: /etc/apt/preferences.d/99nginx
|
dest: /etc/apt/preferences.d/99nginx
|
||||||
|
|
||||||
- name: Update package cache
|
- name: Update package cache # noqa 503
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
when: apt_repo.changed
|
when: apt_repo.changed
|
||||||
|
|
Loading…
Reference in a new issue