style: Fix some ansible-lint issues

This commit is contained in:
saibotk 2023-02-11 12:17:17 +01:00
parent 13228982b6
commit 862a52f2e5
Signed by: saibotk
GPG key ID: 67585F0065E261D5
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@
validate_certs: true
user_name: "{{ item.username }}"
user_password: "{{ item.password }}"
grants: "{{ item.grants }}"
grants: "{{ item.grants }}" # noqa args[module] This has to be escaped to a string
loop: "{{ monitoring_influxdb_users }}"
delegate_to: 127.0.0.1
no_log: true

View file

@ -18,7 +18,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
- name: Update default SELinux contexts for acme-dumper
community.general.system.sefcontext:
community.general.sefcontext:
target: '{{ item }}(/.*)?'
setype: "container_file_t"
selevel: "{{ traefik_selinux_level | default(omit) }}"