ansible-lint: Fix some issues
This commit is contained in:
parent
8a5c248da4
commit
262f672707
6 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue