mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 02:03:09 +02:00
Update to 2022-01-31 17:00
This commit is contained in:
parent
98213521a3
commit
f1dc69afe6
@ -5,9 +5,9 @@
|
||||
element_id: element
|
||||
|
||||
# Version to deploy, and expected sha1
|
||||
element_version: 1.9.9
|
||||
element_version: 1.10.0
|
||||
# sha1sum of the tar.gz
|
||||
element_archive_sha1: 65aae8a31aa26e81474e6bdf07be2807045ce6d5
|
||||
element_archive_sha1: 229bbb253fc0e3a34b2749432de062f0089ed856
|
||||
|
||||
# Where to install element
|
||||
element_root_dir: /opt/matrix/element
|
||||
|
@ -65,7 +65,7 @@ penpot_ldap_search_filter: "{{ ad_auth | ternary('(&(sAMAccountName=:username)(o
|
||||
# If auth is needed, set penpot_ldap_bind_dn and penpot_ldap_bind_pass
|
||||
# penpot_ldap_bin_dn: CN=Penpot, OU=Apps, DC=example, DC=org
|
||||
# penpot_ldap_bind_pass: S3cr3t.
|
||||
penpot_ldap_attr_username: "{{ ad_auth | default(False) | ternary('sAMAccountName', 'uid') }}"
|
||||
penpot_ldap_attr_username: "{{ ad_auth | default(False) | ternary('userPrincipalName', 'uid') }}"
|
||||
penpot_ldap_attr_email: mail
|
||||
penpot_ldap_attr_fullname: cn
|
||||
penpot_ldap_attr_photo: jpegPhoto
|
||||
|
@ -11,6 +11,22 @@
|
||||
- sfnt2woff
|
||||
tags: penpot
|
||||
|
||||
- when: system_proxy is defined and system_proxy != ''
|
||||
block:
|
||||
|
||||
- name: Create maven configuration dir
|
||||
file: path={{ penpot_root_dir }}/.m2 state=directory owner={{ penpot_user }} group={{ penpot_user }}
|
||||
|
||||
- name: Deploy maven configuration
|
||||
template: src=../maven/templates/maven.xml.j2 dest={{ penpot_root_dir }}/.m2/settings.xml owner={{ penpot_user }} group={{ penpot_user }}
|
||||
|
||||
tags: penpot
|
||||
|
||||
- when: system_proxy is not defined or system_proxy == ''
|
||||
name: Remove maven proxy config
|
||||
file: path={{ penpot_root_dir }}/.m2/settings.xml state=absent
|
||||
tags: penpot
|
||||
|
||||
- when: penpot_install_mode != 'none'
|
||||
block:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user