Update to 2022-10-27 14:00

This commit is contained in:
Daniel Berteaud 2022-10-27 14:00:08 +02:00
parent c5d3ee9d98
commit b851bc1a33
5 changed files with 14 additions and 4 deletions

View File

@ -67,7 +67,7 @@
include_tasks: ../includes/create_selfsigned_cert.yml
vars:
cert_path: "{{ httpd_cert_path }}"
cert_key_path: "{{ cert_key_path }"
cert_key_path: "{{ httpd_key_path }}"
when: not httpd_default_cert.stat.exists
tags: [conf,cert,web]

View File

@ -58,6 +58,10 @@ ldap2pg_base_conf:
ddl:
- __create_on_schemas__
full:
- rw
- __all_on_schemas__
sync_map:
- description: "Create the ldap_roles group"
roles:

View File

@ -5,8 +5,8 @@
element_id: element
# Version to deploy, and expected sha256
element_version: 1.11.10
element_archive_sha256: 153853fc3f1ad3f5da791834904b107d88bb71caf573eb52a2d81bf4a34f634a
element_version: 1.11.12
element_archive_sha256: 62469002d03600c220de90b6f009f4b1016d2bdeb2255145c544f3144ddd1c84
# Where to install element
element_root_dir: /opt/matrix/element

View File

@ -1,7 +1,7 @@
---
# Synapse version to deploy
synapse_version: '1.69.0'
synapse_version: '1.70.0'
# Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True

View File

@ -147,3 +147,9 @@
- name: Install a script to set nomad bridge in promisc mode
copy: src=50-nomad-promisc dest=/etc/NetworkManager/dispatcher.d/50-nomad-promisc mode=755
tags: nomad
- name: Create host_volume directories
file: path={{ item.path }} state=directory owner={{ item.owner | default(omit) }} group={{ item.group | default(omit) }} mode={{ item.mode | default(omit) }}
loop: "{{ nomad_conf.client.host_volumes | default([]) }}"
when: item.create | default(False)
tags: nomad