Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/vm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/addons
diff options
context:
space:
mode:
authorszaimen <szaimen@e.mail.de>2020-09-04 10:05:47 +0300
committerGitHub <noreply@github.com>2020-09-04 10:05:47 +0300
commitc42ec1d992d4ac995c6700affe05ba74cdb99c4c (patch)
treeb53ae82a9916e7e66e064e08b5c124eb89c6dcb8 /addons
parent80dc7b6293f260f6261a6757ead1cfe717fa5ed6 (diff)
add SCRIPT_NAME to all scripts and standardize whiptail-titles (#1400)
Signed-off-by: enoch85 <github@hanssonit.se> Co-authored-by: enoch85 <github@hanssonit.se>
Diffstat (limited to 'addons')
-rw-r--r--addons/automatic_updates.sh1
-rw-r--r--addons/locales.sh1
-rw-r--r--addons/locate_mirror.sh1
-rw-r--r--addons/redis-server-ubuntu.sh1
-rw-r--r--addons/security.sh1
5 files changed, 5 insertions, 0 deletions
diff --git a/addons/automatic_updates.sh b/addons/automatic_updates.sh
index 7cb5cf88..6c95127d 100644
--- a/addons/automatic_updates.sh
+++ b/addons/automatic_updates.sh
@@ -4,6 +4,7 @@
# shellcheck disable=2034,2059
true
+SCRIPT_NAME="Automatic Updates"
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
diff --git a/addons/locales.sh b/addons/locales.sh
index 17f0fb10..de1b22a0 100644
--- a/addons/locales.sh
+++ b/addons/locales.sh
@@ -4,6 +4,7 @@
# shellcheck disable=2034,2059
true
+SCRIPT_NAME="Locales"
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
diff --git a/addons/locate_mirror.sh b/addons/locate_mirror.sh
index 0731a785..9b557a35 100644
--- a/addons/locate_mirror.sh
+++ b/addons/locate_mirror.sh
@@ -4,6 +4,7 @@
# shellcheck disable=2034,2059
true
+SCRIPT_NAME="Locate Mirror"
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
diff --git a/addons/redis-server-ubuntu.sh b/addons/redis-server-ubuntu.sh
index dacc7353..1ca36fbf 100644
--- a/addons/redis-server-ubuntu.sh
+++ b/addons/redis-server-ubuntu.sh
@@ -1,6 +1,7 @@
#!/bin/bash
# shellcheck disable=2034,2059
true
+SCRIPT_NAME="Redis Server Ubuntu"
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)
diff --git a/addons/security.sh b/addons/security.sh
index 701eaa1b..584a6eb4 100644
--- a/addons/security.sh
+++ b/addons/security.sh
@@ -5,6 +5,7 @@
# REMOVE disable of SC2154 WHEN PUTTING SPAMHAUS IN PRODUCTION (it's just to fixing travis for now)
# shellcheck disable=2034,2059,SC2154
true
+SCRIPT_NAME="Setup Extra Security"
# shellcheck source=lib.sh
. <(curl -sL https://raw.githubusercontent.com/nextcloud/vm/master/lib.sh)