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/etc
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2017-04-27 19:21:55 +0300
committernachoparker <nacho@ownyourbits.com>2017-04-27 20:25:18 +0300
commit2877a2826dcbe12f33c94eac87e2af5d23bbbd4f (patch)
tree7cc076090a8224086aad4eb0c88213d33abec55d /etc
parent8200602ee5d4260be00a69c17b1a781068a5fb5e (diff)
return to menu in nextcloudpi-configv0.8.4
Diffstat (limited to 'etc')
-rwxr-xr-xetc/library.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/library.sh b/etc/library.sh
index aeb5fd97..76e4cc16 100755
--- a/etc/library.sh
+++ b/etc/library.sh
@@ -162,7 +162,6 @@ function config()
case $RET in
$DIALOG_CANCEL)
- echo "Aborted"
return 1
;;
$DIALOG_OK)
@@ -220,7 +219,7 @@ function configure_script()
(
local SCRIPT=$1
cd /usr/local/etc/nextcloudpi-config.d/
- config $SCRIPT || return 1 # writes "$INSTALLATION_CODE"
+ config $SCRIPT || return 0 # writes "$INSTALLATION_CODE"
echo -e "$INSTALLATION_CODE" > $SCRIPT # save configuration
source ./$SCRIPT # load configuration
echo -e "Configuring \e[1m$( basename $SCRIPT .sh )\e[0m"