So läuft.
Nach studieren dieser Anleitung https://help.univention.com/t/nextcloud-join-skript-fehler/5049/16
habe ich in der : /usr/lib/univention-install/50nextcloud.inst
nextcloud_curl() {
local result
local curlCode
result=$(curl -k -s "$@")
curlCode=$?
#echo "curl exit code $curlCode params $@" > /dev/stderr
if [ ! ${curlCode} -eq 0 ]; then
debugOutput=""
if [ "$nextcloud_ucs_debug" -eq 1 ]; then
debugOutput=", parameters were\n\t$@"
fi
echo "curl failed with error $curlCode$debugOutput" > /dev/stderr
exit ${curlCode}
fi
echo "$result"
}
hinter "result=$(curl …) die “-k” option ergänzt. Dann lief das Join-Script durch.
VG
Reiner