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-05-23 19:37:15 +0300
committernachoparker <nacho@ownyourbits.com>2017-05-23 19:44:47 +0300
commit06423bf4ae86ec695d4dcde482f1f316a79e5cd6 (patch)
tree94bfd8f1fbf0f7e2b35c0866137b0245fe3d9e11 /etc/nextcloudpi-config.d/NFS.sh
parent0479dbbea887698f0632967ed28e05a8d7d78405 (diff)
if ACTIVE=yes by default, launch configure for that script on updatev0.11.1
Diffstat (limited to 'etc/nextcloudpi-config.d/NFS.sh')
-rw-r--r--etc/nextcloudpi-config.d/NFS.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/nextcloudpi-config.d/NFS.sh b/etc/nextcloudpi-config.d/NFS.sh
index 2e64f407..31d6837c 100644
--- a/etc/nextcloudpi-config.d/NFS.sh
+++ b/etc/nextcloudpi-config.d/NFS.sh
@@ -14,6 +14,7 @@
# More at: https://ownyourbits.com
#
+ACTIVE_=no
DIR_=/media/USBdrive/ncdata/admin/files
SUBNET_=192.168.1.0/24
USER_=www-data
@@ -41,6 +42,8 @@ from 'nextcloudpi-config'" \
configure()
{
+ [[ $ACTIVE_ != "yes" ]] && { service nfs-kernel-server stop; systemctl disable nfs-kernel-server; return; }
+
# CHECKS
################################
[ -d "$DIR_" ] || { echo -e "INFO: directory $DIR_ does not exist. Creating"; mkdir -p "$DIR_"; }