mirror of
https://github.com/nextcloud/vm.git
synced 2025-10-26 11:27:32 +00:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
#!/bin/bash
|
|
|
|
# T&M Hansson IT AB © - 2024, https://www.hanssonit.se/
|
|
|
|
true
|
|
SCRIPT_NAME="Documentserver menu"
|
|
# shellcheck source=lib.sh
|
|
source /var/scripts/fetch_lib.sh
|
|
|
|
# Check for errors + debug code and abort if something isn't right
|
|
# 1 = ON
|
|
# 0 = OFF
|
|
DEBUG=0
|
|
debug_mode
|
|
|
|
# Must be root
|
|
root_check
|
|
|
|
choice=$(whiptail --title "$TITLE" --menu \
|
|
"Which Documentserver for online editing do you want to install?\n\nWe recomend Collabora with Docker. The subdomain could look like this:\noffice.your-nextcloud.tld\n\nAutomatically configure and install the selected Documentserver.
|
|
$MENU_GUIDE\n\n$RUN_LATER_GUIDE" "$WT_HEIGHT" "$WT_WIDTH" 4 \
|
|
"Collabora (Docker)" "(Extra Subdomain required)" \
|
|
"Collabora (Integrated)" "(No Subdomain required)" \
|
|
"OnlyOffice (Docker)" "(Extra Subdomain required)" \
|
|
"OnlyOffice (Integrated)" "(No Subdomain required)" 3>&1 1>&2 2>&3)
|
|
|
|
case "$choice" in
|
|
"Collabora (Docker)")
|
|
print_text_in_color "$ICyan" "Downloading the Collabora (Docker) script..."
|
|
run_script APP collabora_docker
|
|
;;
|
|
"Collabora (Integrated)")
|
|
print_text_in_color "$ICyan" "Downloading the Collabora (Integrated) script..."
|
|
run_script APP collabora_integrated
|
|
;;
|
|
"OnlyOffice (Docker)")
|
|
print_text_in_color "$ICyan" "Downloading the OnlyOffice (Docker) script..."
|
|
run_script APP onlyoffice_docker
|
|
;;
|
|
"OnlyOffice (Integrated)")
|
|
print_text_in_color "$ICyan" "Downloading the OnlyOffice (Integrated) script..."
|
|
run_script APP onlyoffice_integrated
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
exit
|