Update select_linux_iso.sh

This commit is contained in:
MacRimi 2025-06-29 14:07:07 +02:00
parent 96c23bf138
commit 5f2e346bd8

View File

@ -265,7 +265,7 @@ function select_linux_other_scripts() {
--menu "\n$(translate "Select one of the ready-to-run Linux VMs:")" 18 70 10 \ --menu "\n$(translate "Select one of the ready-to-run Linux VMs:")" 18 70 10 \
"${OTHER_OPTIONS[@]}" 3>&1 1>&2 2>&3) "${OTHER_OPTIONS[@]}" 3>&1 1>&2 2>&3)
if [[ $? -ne 0 || "$choice" == "3" ]]; then if [[ $? -ne 0 || "$choice" == "4" ]]; then
return 1 return 1
fi fi
@ -283,7 +283,7 @@ function select_linux_other_scripts() {
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/vm/nextcloud-vm.sh)" bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/vm/nextcloud-vm.sh)"
echo -e echo -e
echo -e "$(translate "You can use the following credentials to login to the Nextcloud vm.\nUsername: admin")" echo -e "$(translate "You can use the following credentials to login to the Nextcloud vm.\nUsername: admin")"
echo -e "$(translate This VM requires extra installation steps, see install guide at:\nhttps://github.com/community-scripts/ProxmoxVE/discussions/144")" echo -e "$(translate "This VM requires extra installation steps, see install guide at:\nhttps://github.com/community-scripts/ProxmoxVE/discussions/144")"
echo -e echo -e
;; ;;
esac esac
@ -295,6 +295,7 @@ function select_linux_other_scripts() {
--msgbox "$(translate "Visit the website to discover more scripts, stay updated with the latest updates, and support the project:\n\nhttps://community-scripts.github.io/ProxmoxVE")" 15 70 --msgbox "$(translate "Visit the website to discover more scripts, stay updated with the latest updates, and support the project:\n\nhttps://community-scripts.github.io/ProxmoxVE")" 15 70
return 1 return 1
} }