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
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-11-14 22:00:03 +0300
committernachoparker <nacho@ownyourbits.com>2017-11-14 22:00:27 +0300
commitdc2ddd757b2ff7fa77ffe6e744ee84d45aed47c9 (patch)
treee017ad8a5ac7f41b3e80d624ea70ad250f354f50
parentb96704bb6da350afeba151aa91371a2048dbbba3 (diff)
noip: fix return valuev0.34.10
-rw-r--r--changelog.md4
-rw-r--r--etc/nextcloudpi-config.d/no-ip.sh2
2 files changed, 4 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index 1a8c25f0..c01796a5 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v0.34.9](https://github.com/nextcloud/nextcloudpi/commit/7e0e4e0) (2017-11-12) nc-nextcloud: restart php after redis
+[v0.34.10](https://github.com/nextcloud/nextcloudpi/commit/de8b961) (2017-11-14) noip: fix return value
+
+[v0.34.9 ](https://github.com/nextcloud/nextcloudpi/commit/e0dec54) (2017-11-12) nc-nextcloud: restart php after redis
[v0.34.8 ](https://github.com/nextcloud/nextcloudpi/commit/d0782ed) (2017-11-12) nc-init: install notifications
diff --git a/etc/nextcloudpi-config.d/no-ip.sh b/etc/nextcloudpi-config.d/no-ip.sh
index 1e2ddeed..dda67c27 100644
--- a/etc/nextcloudpi-config.d/no-ip.sh
+++ b/etc/nextcloudpi-config.d/no-ip.sh
@@ -93,7 +93,7 @@ configure()
local IF=$( ip -br l | awk '{ if ( $2 == "UP" ) print $1 }' | head -1 )
[[ "$IF" != "" ]] && IF="-I $IF"
- /usr/local/bin/noip2 -C -c /usr/local/etc/no-ip2.conf $IF -U "$TIME_" -u "$USER_" -p "$PASS_" | tee >(cat - >&2) \
+ /usr/local/bin/noip2 -C -c /usr/local/etc/no-ip2.conf $IF -U "$TIME_" -u "$USER_" -p "$PASS_" 2>&1 | tee >(cat - >&2) \
| grep -q "New configuration file .* created" || return 1
update-rc.d noip2 enable