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>2018-02-06 16:21:47 +0300
committernachoparker <nacho@ownyourbits.com>2018-02-06 16:22:15 +0300
commit048ee6af6f67080bdca548797cbe7e44b20c4949 (patch)
treeac0b48e0484253ae7b1f4b05349497896b9569d3
parent48a22b497fdf4637bcabdf2e621c3b9952a81aec (diff)
added ncp-config link to nextcloudpi-configv0.45.4
-rw-r--r--changelog.md6
-rw-r--r--nextcloudpi.sh1
-rwxr-xr-xupdate.sh3
3 files changed, 8 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md
index 760348e1..a128e2b0 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,7 +1,9 @@
-[v0.45.3](https://github.com/nextcloud/nextcloudpi/commit/641ece7) (2018-02-05) lamp: add ldap support (#377)
+[v0.45.4](https://github.com/nextcloud/nextcloudpi/commit/9778446) (2018-02-06) added ncp-config link to nextcloudpi-config
-[v0.45.2](https://github.com/nextcloud/nextcloudpi/commit/010c02f) (2018-02-05) nc-nextcloud: fixes for beta versions
+[v0.45.3](https://github.com/nextcloud/nextcloudpi/commit/2b178ab) (2018-02-05) lamp: add ldap support (#377)
+
+[v0.45.2 ](https://github.com/nextcloud/nextcloudpi/commit/010c02f) (2018-02-05) nc-nextcloud: fixes for beta versions
[v0.45.1 ](https://github.com/nextcloud/nextcloudpi/commit/3a525c1) (2018-02-05) nc-backup: fixes in checking space and auto
diff --git a/nextcloudpi.sh b/nextcloudpi.sh
index c83c2cb7..f5f7aad7 100644
--- a/nextcloudpi.sh
+++ b/nextcloudpi.sh
@@ -29,6 +29,7 @@ install()
apt-get update
$APTINSTALL dialog whiptail
mkdir -p $CONFDIR
+ ln -s /usr/local/bin/nextcloudpi-config /usr/local/bin/ncp-config
# include option in raspi-config (only Raspbian)
test -f /usr/bin/raspi-config && {
diff --git a/update.sh b/update.sh
index 2fdd870d..ed2b7938 100755
--- a/update.sh
+++ b/update.sh
@@ -225,6 +225,9 @@ EOF
chmod +x /etc/cron.weekly/letsencrypt-ncp
}
+ # add ncp-config link
+ [[ -e /usr/local/bin/ncp-config ]] || ln -s /usr/local/bin/nextcloudpi-config /usr/local/bin/ncp-config
+
} # end - only live updates
exit 0