univention-app/setup

184 строки
6.1 KiB
Plaintext
Исходник Обычный вид История

#!/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/>.
2019-02-14 12:14:25 +03:00
getarg() { # by Univention
local found=0
for arg in "${ARGS[@]}"; do
if [ "$found" -eq 1 ]; then
echo "$arg"
break
fi
if [ "$arg" = "$1" ]; then
found=1
fi
done
}
2019-02-14 01:49:10 +03:00
ERROR_FILE=$(getarg "--error-file")
error_msg() {
if [ -n "$1" ]; then
IN="$@"
else
read IN # from stdin
fi
if [ -n "$ERROR_FILE" ]; then
echo "$IN" | tee -a "$ERROR_FILE" >&2
else
echo "$IN" >&2
fi
}
NC_DATADIR="$NC_PERMDATADIR/nextcloud-data"
NC_UCR_FILE="$NC_PERMCONFDIR/ucr"
cd /var/www/html
if [ ! -x occ ]; then
2019-02-14 01:49:10 +03:00
error_msg "/var/www/html/occ missing or not executable – was the docker container modified manually?"
exit 21
fi
OCC="sudo -u www-data ./occ"
NC_IS_INSTALLED=`$OCC status | grep "installed: true" -c`
NC_IS_UPGRADE=1
if [ "$NC_IS_INSTALLED" -eq 0 ] ; then
NC_IS_UPGRADE=0
NC_ADMIN_PWD_FILE="$NC_PERMCONFDIR/admin.secret"
NC_DB_TYPE="pgsql"
NC_LOCAL_ADMIN="nc_admin"
NC_LOCAL_ADMIN_PWD=`pwgen -y 30 1`
echo "$NC_LOCAL_ADMIN_PWD" > "$NC_ADMIN_PWD_FILE"
chmod 600 "$NC_ADMIN_PWD_FILE"
mkdir -p "$NC_DATADIR"
chown www-data:www-data -R "$NC_DATADIR"
$OCC maintenance:install \
--admin-user "$NC_LOCAL_ADMIN" \
--admin-pass "$NC_LOCAL_ADMIN_PWD" \
--database "$NC_DB_TYPE" \
--database-host "$DB_HOST" \
--database-port "$DB_PORT" \
--database-name "$DB_NAME" \
--database-user "$DB_USER" \
--database-pass "$DB_PASSWORD" \
2019-02-14 01:49:10 +03:00
--data-dir "$NC_DATADIR" \
2>&1 | error_msg
STATE=$?
if [[ $STATE != 0 ]]; then
2019-02-14 01:49:10 +03:00
error_msg "Error while installing Nextcloud. Please check the apache log within the Nextcloud docker container, and (if existing) the nextcloud.log file in $NC_DATADIR."
exit 22;
fi
fi
UPGRADE_LOGFILE="/var/log/nextcloud-upgrade_"`date +%y_%m_%d`".log"
$OCC check
$OCC status
$OCC app:list
$OCC upgrade 2>&1>> "$UPGRADE_LOGFILE"
2019-02-14 01:49:10 +03:00
error_msg "The upgrade log is written to $UPGRADE_LOGFILE within the nextcloud container"
# basic Nextcloud configuration
eval "`cat \"$NC_UCR_FILE\"`"
if [ "$NC_IS_UPGRADE" -eq 0 ] ; then
$OCC config:system:set updatechecker --value="false" # this is handled via UCS AppCenter
$OCC config:system:set --value "\OC\Memcache\APCu" memcache.local
$OCC config:system:set overwriteprotocol --value="https"
$OCC config:system:set overwritewbroot --value="/nextcloud"
$OCC config:system:set overwrite.cli.url --value="https://$NC_UCR_DOMAIN/nextcloud"
$OCC config:system:set htaccess.RewriteBase --value="/nextcloud"
$OCC background:cron
$OCC app:enable user_ldap
$OCC app:disable updatenotification
# set IP-related settings (refreshed on update)
$OCC config:system:set trusted_proxies 0 --value="$NC_TRUSTED_PROXY_IP"
$OCC config:system:set trusted_domains 0 --value="$NC_UCR_DOMAIN"
NC_TRUSTED_DOMAIN_NO=1
NC_HOST_IPS=($NC_HOST_IPS)
for HOST_IP in "${NC_HOST_IPS[@]}" ; do
HOST_IP=$(echo "$HOST_IP" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
$OCC config:system:set trusted_domains "$NC_TRUSTED_DOMAIN_NO" --value="$HOST_IP"
NC_TRUSTED_DOMAIN_NO=$(($NC_TRUSTED_DOMAIN_NO+1))
done
if [ "$NC_APPLIANCE" = true ]; then
# install extra apps
$OCC app:install zenodo
$OCC app:install dashboard
$OCC app:install circles
$OCC app:install groupfolders
$OCC app:install announcementcenter
$OCC app:install admin_notifications
$OCC app:install quota_warning
$OCC app:install orcid
$OCC app:install user_saml
# enable extra apps
$OCC app:enable zenodo
$OCC app:enable dashboard
$OCC app:enable circles
$OCC app:enable groupfolders
$OCC app:enable announcementcenter
$OCC app:enable admin_notifications
$OCC app:enable quota_warning
$OCC app:enable orcid
$OCC app:enable user_saml
# ensure they are the latest version
$OCC upgrade 2>&1>> "$UPGRADE_LOGFILE"
fi
else
if [ "$NC_APPLIANCE" = true ]; then
# fixes wrong permissions as set in first release github issue #39
# TODO: remove this if block when 12 is phased out, should be more than enough time to upgrade
cd apps
chown -R www-data:nogroup *
cd ..
2018-01-17 01:04:42 +03:00
fi
# attempt to re-enable disabled apps
DISABLED_APPS=( $(cat "$UPGRADE_LOGFILE" | grep "Disabled incompatible app:" | cut -d ":" -f 2 | egrep -o "[a-z]+[a-z0-9_]*[a-z0-9]+") )
for APPID in "${DISABLED_APPS[@]}" ; do
2019-02-14 01:49:10 +03:00
$OCC app:enable "$APPID" || error_msg "Could not re-enable $APPID"
done
fi
# Recreate the htaccess on both install and update
$OCC maintenance:update:htaccess
# env var is set from the dockerfile
if [ "$NC_IS_PATCHED" = true ]; then
$OCC config:system:set integrity.check.disabled --value="true" --type=boolean
# (un)comment and adjust following line depending on the use case,
# otherwise a warning is shown, still
$OCC integrity:check-app dav
$OCC integrity:check-app user_ldap
# integrity checks are done once on upgrade case, thus we can directly remove the flag again
$OCC config:system:delete integrity.check.disabled
fi
echo "*/15 * * * * www-data php -f /var/www/html/cron.php" > /etc/cron.d/nextcloud