From 7e033191e333aecb080d363a4a05d49b5d31a31e Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Fri, 29 May 2026 15:30:07 -0400 Subject: [PATCH] fix(grist): keep install:ee non-interactive (GIT_TERMINAL_PROMPT=0) Restores the enterprise-extensions install step (install:ee) and stops it hanging during "Installing Grist". install:ee clones the private grist-ee repo and falls back to a public prebuilt tarball when the clone fails. On a host with an attached terminal and no signed-in GitHub user, git does not fail - it blocks on "Username for 'https://github.com':", so the install hangs forever. GIT_TERMINAL_PROMPT=0 makes the clone fail fast so the tarball fallback runs as intended. Refs community-scripts/ProxmoxVE#14782 --- ct/grist.sh | 82 ++++++++++++++++++++++++++++++++++++++++ install/grist-install.sh | 65 +++++++++++++++++++++++++++++++ 2 files changed, 147 insertions(+) create mode 100644 ct/grist.sh create mode 100644 install/grist-install.sh diff --git a/ct/grist.sh b/ct/grist.sh new file mode 100644 index 00000000..75b098bf --- /dev/null +++ b/ct/grist.sh @@ -0,0 +1,82 @@ +#!/usr/bin/env bash +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/build.func) +# Copyright (c) 2021-2026 community-scripts ORG +# Author: cfurrow | Co-Author: Slaviša Arežina (tremor021) +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE +# Source: https://github.com/gristlabs/grist-core + +APP="Grist" +var_tags="${var_tags:-database;spreadsheet}" +var_cpu="${var_cpu:-2}" +var_ram="${var_ram:-3072}" +var_disk="${var_disk:-6}" +var_os="${var_os:-debian}" +var_version="${var_version:-13}" +var_arm64="${var_arm64:-no}" +var_unprivileged="${var_unprivileged:-1}" + +header_info "$APP" +variables +color +catch_errors + +function update_script() { + header_info + check_container_storage + check_container_resources + + if [[ ! -d /opt/grist ]]; then + msg_error "No ${APP} Installation Found!" + exit + fi + + ensure_dependencies git + + if check_for_gh_release "grist" "gristlabs/grist-core"; then + msg_info "Stopping Service" + systemctl stop grist + msg_ok "Stopped Service" + + msg_info "Creating backup" + rm -rf /opt/grist_bak + mv /opt/grist /opt/grist_bak + msg_ok "Backup created" + + fetch_and_deploy_gh_release "grist" "gristlabs/grist-core" "tarball" + + msg_info "Updating Grist" + mkdir -p /opt/grist/docs + cp -n /opt/grist_bak/.env /opt/grist/.env + if ls /opt/grist_bak/docs/* &>/dev/null; then + cp -r /opt/grist_bak/docs/* /opt/grist/docs/ + fi + [[ -f /opt/grist_bak/grist-sessions.db ]] && cp /opt/grist_bak/grist-sessions.db /opt/grist/grist-sessions.db + [[ -f /opt/grist_bak/landing.db ]] && cp /opt/grist_bak/landing.db /opt/grist/landing.db + cd /opt/grist + $STD yarn install + # install:ee stalls probing the private grist-ee repo (a dev-only path it + # tries before falling back to the public tarball); GIT_TERMINAL_PROMPT=0 + # makes that probe fail fast instead of waiting at a git login prompt. + export GIT_TERMINAL_PROMPT=0 + $STD yarn run install:ee -y + $STD yarn run build:prod + $STD yarn run install:python + msg_ok "Updated Grist" + + msg_info "Starting Service" + systemctl start grist + msg_ok "Started Service" + + msg_ok "Updated successfully!" + fi + exit +} + +start +build_container +description + +msg_ok "Completed successfully!\n" +echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${INFO}${YW} Access it using the following URL:${CL}" +echo -e "${TAB}${GATEWAY}${BGN}Grist: http://${IP}:8484${CL}" diff --git a/install/grist-install.sh b/install/grist-install.sh new file mode 100644 index 00000000..f185127d --- /dev/null +++ b/install/grist-install.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2026 community-scripts ORG +# Author: cfurrow | Co-Author: Slaviša Arežina (tremor021) +# License: MIT | https://github.com/community-scripts/ProxmoxVED/raw/main/LICENSE +# Source: https://github.com/gristlabs/grist-core + +source /dev/stdin <<<"$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" +$STD apt install -y \ + make \ + ca-certificates \ + python3-venv \ + git +msg_ok "Installed Dependencies" +NODE_VERSION="22" NODE_MODULE="yarn@latest" setup_nodejs +fetch_and_deploy_gh_release "grist" "gristlabs/grist-core" "tarball" + +msg_info "Installing Grist" +export CYPRESS_INSTALL_BINARY=0 +export NODE_OPTIONS="--max-old-space-size=2048" +# install:ee stalls probing the private grist-ee repo (a dev-only path it +# tries before falling back to the public tarball); GIT_TERMINAL_PROMPT=0 +# makes that probe fail fast instead of waiting at a git login prompt. +export GIT_TERMINAL_PROMPT=0 +cd /opt/grist +$STD yarn install +$STD yarn run install:ee -y +$STD yarn run build:prod +$STD yarn run install:python +cat </opt/grist/.env +NODE_ENV=production +GRIST_HOST=0.0.0.0 +EOF +msg_ok "Installed Grist" + +msg_info "Create Service" +cat </etc/systemd/system/grist.service +[Unit] +Description=Grist +After=network.target + +[Service] +Type=simple +WorkingDirectory=/opt/grist +ExecStart=/usr/bin/yarn run start:prod +EnvironmentFile=-/opt/grist/.env + +[Install] +WantedBy=multi-user.target +EOF + +systemctl enable -q --now grist +msg_ok "Created Service" + +motd_ssh +customize +cleanup_lxc