From 310cc3ebe6de7d5995b695cf39cf9cfd14271f9f Mon Sep 17 00:00:00 2001
From: barremian <machinetime77@gmail.com>
Date: Tue, 28 May 2024 22:57:49 +0200
Subject: [PATCH] lxc-forgejo: Add --separate-output to attempt to hide
 Whiptail after user input during installation

---
 install/forgejo-install.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/install/forgejo-install.sh b/install/forgejo-install.sh
index 16a8e5f2..b2c98456 100644
--- a/install/forgejo-install.sh
+++ b/install/forgejo-install.sh
@@ -49,6 +49,7 @@ DB_CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "DATABASE"
     "2" "PostgreSQL " OFF \
     "3" "MySQL" OFF \
     "4" "MariaDB" OFF \
+    --separate-output \
     3>&1 1>&2 2>&3)
 if [ "$DB_CHOICE" == "1" ]; then
   msg_info "SQLite will be setup automatically by Forgejo."