ansible-lint: Fix some issues

This commit is contained in:
saibotk 2022-06-13 02:32:24 +02:00
parent 8a5c248da4
commit 262f672707
Signed by: saibotk
GPG key ID: 67585F0065E261D5
6 changed files with 10 additions and 10 deletions

View file

@ -23,8 +23,8 @@
matrix_install_location: /srv/matrix
# The container data volume mount locations
matrix_data_location: "{{ matrix_install_location}}/data"
matrix_database_location: "{{ matrix_install_location}}/database"
matrix_data_location: "{{ matrix_install_location }}/data"
matrix_database_location: "{{ matrix_install_location }}/database"
# The certresolver that is used by traefik for this domain
matrix_traefik_certresolver: letsencrypt_http

View file

@ -22,8 +22,8 @@
matrix_maubot_install_location: /srv/matrix-maubot
# The container data volume mount locations
matrix_maubot_data_location: "{{ matrix_maubot_install_location}}/data"
matrix_maubot_database_location: "{{ matrix_maubot_install_location}}/database"
matrix_maubot_data_location: "{{ matrix_maubot_install_location }}/data"
matrix_maubot_database_location: "{{ matrix_maubot_install_location }}/database"
# The certresolver that is used by traefik for this domain
matrix_maubot_traefik_certresolver: letsencrypt_http

View file

@ -31,7 +31,7 @@
- name: Upgrade all packages
ansible.builtin.apt:
name: "*"
state: latest # noqa 403
state: latest # noqa 403
update_cache: true
tags:
- apt

View file

@ -21,7 +21,7 @@
- name: Upgrade all packages
ansible.builtin.dnf:
name: "*"
state: latest # noqa 403
state: latest # noqa 403
update_cache: true
tags:
- dnf

View file

@ -21,7 +21,7 @@
- name: Upgrade all packages (RedHat-common)
ansible.builtin.yum:
name: "*"
state: latest # noqa 403
state: latest # noqa 403
update_cache: true
tags:
- yum

View file

@ -21,8 +21,8 @@
- name: "Select tasks for {{ ansible_distribution }} {{ ansible_distribution_major_version }}"
ansible.builtin.include_tasks: "{{ distro_file }}"
with_first_found:
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
- "{{ ansible_distribution }}-{{ ansible_distribution_major_version }}.yml"
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
loop_control:
loop_var: distro_file