From b7de89ba6a0544d3f92bc5298e0f5559791451d0 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Mon, 23 Oct 2023 21:35:19 +0200 Subject: [PATCH 1/2] fix reference to column in wikipedia timezone list Signed-off-by: Peter van Dijk --- php/templates/containers.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/templates/containers.twig b/php/templates/containers.twig index 90c5fe13..bb438b8e 100644 --- a/php/templates/containers.twig +++ b/php/templates/containers.twig @@ -649,7 +649,7 @@ - You need to make sure that the timezone that you enter is valid. An example is Europe/Berlin. You can get valid values by looking at the 'TZ database name' column of this list: click here. The default is Etc/UTC if nothing is entered.

+ You need to make sure that the timezone that you enter is valid. An example is Europe/Berlin. You can get valid values by looking at the 'TZ identifier' column of this list: click here. The default is Etc/UTC if nothing is entered.

{% else %} The timezone for Nextcloud is currently set to {{ timezone }}. You can reset the timezone again by clicking on the button below.

From 9168bdaad5e41efe8c8f5ed33bfba129ae1f6f99 Mon Sep 17 00:00:00 2001 From: Simon L Date: Mon, 30 Oct 2023 08:50:07 +0100 Subject: [PATCH 2/2] adjust name in postgres container as well Signed-off-by: Simon L --- Containers/postgresql/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/postgresql/start.sh b/Containers/postgresql/start.sh index 8d5f7b05..63fd43cf 100644 --- a/Containers/postgresql/start.sh +++ b/Containers/postgresql/start.sh @@ -31,7 +31,7 @@ fi if [ -f "$DUMP_DIR/initialization.failed" ]; then echo "The database initialization failed. Most likely was a wrong timezone selected." echo "The selected timezone is '$TZ'." - echo "Please check if it is in 'TZ database name' column of the timezone list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List" + echo "Please check if it is in the 'TZ identifier' column of the timezone list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List" echo "For further clues on what went wrong, look at the logs above." echo "You might start again from scratch by following https://github.com/nextcloud/all-in-one#how-to-properly-reset-the-instance and selecting a proper timezone." exit 1