From 257de85c637ac140fea820811ca54c74cb3b7ddf Mon Sep 17 00:00:00 2001 From: tremor021 Date: Mon, 8 Dec 2025 09:07:23 +0100 Subject: [PATCH] OpenCloud: Fix alignment for read -p --- 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 edb028235..6b19d2cb1 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 (eg cloud.domain.tld): " oc_host +read -r -p "${TAB3]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 (eg collabora.domain.tld): " collabora_host +read -r -p "${TAB3}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 (eg wopiserver.domain.tld): " wopi_host +read -r -p "${TAB3}Enter the hostname of your WOPI server (eg wopiserver.domain.tld): " wopi_host if [[ "$wopi_host" ]]; then WOPI_HOST="$wopi_host" fi