mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-07-27 00:05:44 +02:00
Update to 2022-01-31 17:00
This commit is contained in:
@@ -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:
|
||||
|
||||
|
Reference in New Issue
Block a user