From 1f11d40c47811d6f18373af5d1d80d7f48be8e36 Mon Sep 17 00:00:00 2001 From: nachoparker Date: Wed, 16 Jan 2019 18:42:44 -0700 Subject: add public IP to trusted domains --- update.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'update.sh') diff --git a/update.sh b/update.sh index 3722867e..93dab4a6 100755 --- a/update.sh +++ b/update.sh @@ -255,6 +255,23 @@ EOF install_app nc-backup install_app nc-restore + # add public IP to trusted domains + cat > /usr/local/bin/nextcloud-domain.sh <<'EOF' +#!/bin/bash +# wicd service finishes before completing DHCP +while :; do + iface="$( ip r | grep "default via" | awk '{ print $5 }' | head -1 )" + ip="$( ip a show dev "$iface" | grep global | grep -oP '\d{1,3}(.\d{1,3}){3}' | head -1 )" + + public_ip="$(curl icanhazip.com 2>/dev/null)" + [[ "$public_ip" != "" ]] && ncc config:system:set trusted_domains 11 --value="$public_ip" + + [[ "$ip" != "" ]] && break + sleep 3 +done +ncc config:system:set trusted_domains 1 --value=$ip +EOF + # remove redundant opcache configuration. Leave until update bug is fixed -> https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=815968 # Bug #416 reappeared after we moved to php7.2 and debian buster packages. (keep last) [[ "$( ls -l /etc/php/7.2/fpm/conf.d/*-opcache.ini | wc -l )" -gt 1 ]] && rm "$( ls /etc/php/7.2/fpm/conf.d/*-opcache.ini | tail -1 )" -- cgit v1.2.3