Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ncp.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ncp.sh')
-rw-r--r--ncp.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/ncp.sh b/ncp.sh
index 01fdcc14..f2a09308 100644
--- a/ncp.sh
+++ b/ncp.sh
@@ -163,12 +163,12 @@ EOF
cat > /usr/local/bin/nextcloud-domain.sh <<'EOF'
#!/bin/bash
-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 )
# wicd service finishes before completing DHCP
-while [[ "$IP" == "" ]]; do
+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 )"
+ [[ "$IP" != "" ]] && break
sleep 3
- IP=$( ip a show dev "$IFACE" | grep global | grep -oP '\d{1,3}(.\d{1,3}){3}' | head -1 )
done
cd /var/www/nextcloud
sudo -u www-data php occ config:system:set trusted_domains 1 --value=$IP