From 860113eaa4c68c15001d62ea044ab1bc4df6fc42 Mon Sep 17 00:00:00 2001 From: vhsdream Date: Tue, 17 Jun 2025 09:35:16 -0400 Subject: [PATCH] OpenCloud: clarify FQDN for users --- install/opencloud-install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/opencloud-install.sh b/install/opencloud-install.sh index 550763a0..8c120e44 100644 --- a/install/opencloud-install.sh +++ b/install/opencloud-install.sh @@ -13,15 +13,15 @@ setting_up_container network_check update_os -read -r -p "Enter the hostname of your OpenCloud server: " oc_host +read -r -p "Enter the hostname of your OpenCloud server (eg cloud.domain.tld): " oc_host if [[ "$oc_host" ]]; then OC_HOST="$oc_host" fi -read -r -p "Enter the hostname of your Collabora server: " collabora_host +read -r -p "Enter the hostname of your Collabora server (eg collabora.domain.tld): " collabora_host if [[ "$collabora_host" ]]; then COLLABORA_HOST="$collabora_host" fi -read -r -p "Enter the hostname of your WOPI server: " wopi_host +read -r -p "Enter the hostname of your WOPI server (eg wopiserver.domain.tld): " wopi_host if [[ "$wopi_host" ]]; then WOPI_HOST="$wopi_host" fi