Release (08.05.2023)

This commit is contained in:
Univention Commit Service 2023-05-08 10:24:00 +00:00
parent f9c6c4a2e8
commit 5f026c7d05
3 changed files with 5 additions and 12 deletions

View File

@ -85,8 +85,6 @@ warn_list:
- "jinja[invalid]"
- "jinja[spacing]"
- "key-order[task]"
- "risky-shell-pipe"
# Disable "risky-shell-pipe" only temporary
# Offline mode disables installation of requirements.yml
offline: false
@ -101,5 +99,3 @@ extra_vars: {}
# List of additional kind:pattern to be added at the top of the default
# match list, first match determines the file kind.
kinds: []
...

View File

@ -1,5 +1,4 @@
---
- name: "Configure OwnCloud SSO"
block:
- name: "Refresh facts"
@ -7,6 +6,7 @@
- name: "Get owncloud oidc secret from LDAP"
ansible.builtin.shell: >
set -o pipefail
univention-ldapsearch
"(&(univentionObjectType=oidc/rpservice)(clientid=owncloud))" clientsecret -xLLL | sed -ne "s|clientsecret: ||p"
register: "configure_apps_owncloud_oidc_secret_output"
@ -65,5 +65,3 @@
ansible.builtin.meta: "flush_handlers"
tags:
- "configure_apps_owncloud"
...

View File

@ -1,5 +1,4 @@
---
- name: "Implement DNS glue record for external host name"
block:
- name: "Check if all vars are set"
@ -14,6 +13,7 @@
- name: "Check if DNS forwarding already exists"
ansible.builtin.shell: >
set -o pipefail
udm dns/ns_record list
--position relativeDomainName={{ set_dns_glue_record_host_name }},{{ set_dns_glue_record_superordinate }}
| sed '/^$/d; s/^DN:/- &/'
@ -38,8 +38,9 @@
loop: "{{ glue_record_entries | default([]) }}"
loop_control:
loop_var: "set_dns_glue_record_item"
when: "item['nameserver'] == set_dns_glue_record_glue_record_nameserver and
item['zone'] == set_dns_glue_record_host_name"
when:
"item['nameserver'] == set_dns_glue_record_glue_record_nameserver and
item['zone'] == set_dns_glue_record_host_name"
tags:
- "set_dns_glue_record_check_record_already_exists"
@ -57,5 +58,3 @@
when: "set_dns_glue_record_create_external_hostname_glue_record | bool"
tags:
- "set_dns_glue_record"
...