ci: add noqa to commands

This commit is contained in:
Guido Grazioli 2022-12-13 11:49:36 +01:00
parent b3b016bf3b
commit f4fe9df97c
No known key found for this signature in database
GPG key ID: 22C8C31EF2BC093B
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
---
- name: Check packages to be installed
block:
- name: "Check if packages are already installed"
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
register: rpm_info
changed_when: rpm_info.failed

View file

@ -1,7 +1,7 @@
---
- name: Check packages to be installed
block:
- name: "Check if packages are already installed"
- name: "Check if packages are already installed" # noqa command-instead-of-module this runs faster
ansible.builtin.command: "rpm -q {{ packages_list | join(' ') }}"
register: rpm_info
changed_when: rpm_info.failed