2017-01-23 20:59:44 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# @copyright Copyright (c) 2017 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
#
|
|
|
|
# @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
#
|
|
|
|
# @license GNU AGPL version 3 or any later version
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Affero General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2018-11-24 00:53:13 +03:00
|
|
|
NC_PERMCONFDIR="/var/lib/univention-appcenter/apps/nextcloud/data/integration"
|
|
|
|
|
2017-01-23 20:59:44 +03:00
|
|
|
NC_UCR_FILE="$NC_PERMCONFDIR/ucr"
|
|
|
|
|
2019-02-14 01:47:31 +03:00
|
|
|
if [ ! -d "$NC_PERMCONFDIR" ]; then
|
|
|
|
mkdir -p "$NC_PERMCONFDIR"
|
|
|
|
fi
|
2017-01-23 20:59:44 +03:00
|
|
|
|
|
|
|
cat >"$NC_UCR_FILE" <<EOL
|
2017-02-10 19:50:25 +03:00
|
|
|
export NC_HOST_IPS="`ucr dump | grep interfaces | grep address | cut -d ":" -f2`"
|
2017-06-26 16:42:47 +03:00
|
|
|
export NC_TRUSTED_PROXY_IP="`ucr get docker/daemon/default/opts/bip | cut -d "/" -f 1`"
|
2017-01-23 20:59:44 +03:00
|
|
|
EOL
|
|
|
|
|
2017-01-24 17:00:28 +03:00
|
|
|
chmod +x "$NC_UCR_FILE"
|
|
|
|
|
2020-01-16 11:42:11 +03:00
|
|
|
cp /etc/univention/ssl/ucsCA/CAcert.pem "$NC_PERMCONFDIR/ucs.crt"
|
|
|
|
|
2017-01-23 20:59:44 +03:00
|
|
|
exit 0
|