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:
Diffstat (limited to 'etc/nextcloudpi-config.d/nc-scan-auto.sh')
-rwxr-xr-xetc/nextcloudpi-config.d/nc-scan-auto.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/nextcloudpi-config.d/nc-scan-auto.sh b/etc/nextcloudpi-config.d/nc-scan-auto.sh
index 0f495959..285d025f 100755
--- a/etc/nextcloudpi-config.d/nc-scan-auto.sh
+++ b/etc/nextcloudpi-config.d/nc-scan-auto.sh
@@ -17,16 +17,19 @@
SCANINTERVAL_=60
DESCRIPTION="Periodically scan NC for externally modified files"
-configure()
+show_info()
{
- whiptail --msgbox \
+ whiptail --yesno \
--backtitle "NextCloudPi configuration" \
--title "Instructions for auto synchronization" \
"Set the time in minutes in SCANINTERVAL. \n
>>> If there are too many files this can greatly affect performance. <<< \n
SCANINTERVAL=0 will disable periodic synchronization." \
20 90
+}
+configure()
+{
[[ $SCANINTERVAL_ == 0 ]] && {
systemctl stop nc-scan.timer
systemctl disable nc-scan.timer