mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-23 14:22:53 +02:00
a339c08bca
* Re-download snappdf Chromium after Invoice Ninja updates update_script() redeploys /opt/invoiceninja via CLEAN_INSTALL, which wipes vendor/beganovich/snappdf/versions. That path isn't covered by create_backup/restore_backup, so the Chromium binary snappdf needs for PDF generation was missing after every update, breaking PDFs (#15942). Re-run the same "vendor/bin/snappdf download" step the install script already does, right after the backup is restored. * Back up snappdf's Chromium download to avoid re-fetching on every update vendor/bin/snappdf download is idempotent: it exits immediately without downloading if versions/revision.txt already exists, and PDF generation doesn't check that version against the installed snappdf package - it just uses whatever's in versions/. So the cached Chromium build survives just fine across an update via the existing backup/restore mechanism. Add vendor/beganovich/snappdf/versions to create_backup/restore_backup; keep the snappdf download call only as a safety net for when the backup doesn't have it yet (e.g. the first update after this fix ships). * Remove explanatory comment
77 lines
2.4 KiB
Bash
77 lines
2.4 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: MickLesk (CanbiZ)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://invoiceninja.com/ | Github: https://github.com/invoiceninja/invoiceninja
|
|
|
|
APP="InvoiceNinja"
|
|
var_tags="${var_tags:-invoicing;business}"
|
|
var_cpu="${var_cpu:-2}"
|
|
var_ram="${var_ram:-2048}"
|
|
var_disk="${var_disk:-8}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-yes}"
|
|
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/invoiceninja ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
setup_mariadb
|
|
if check_for_gh_release "invoiceninja" "invoiceninja/invoiceninja"; then
|
|
msg_info "Stopping Services"
|
|
systemctl stop supervisor nginx php8.4-fpm
|
|
msg_ok "Stopped Services"
|
|
|
|
create_backup /opt/invoiceninja/.env /opt/invoiceninja/storage /opt/invoiceninja/public/storage /opt/invoiceninja/vendor/beganovich/snappdf/versions
|
|
|
|
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "invoiceninja" "invoiceninja/invoiceninja" "prebuild" "latest" "/opt/invoiceninja" "invoiceninja.tar.gz"
|
|
|
|
restore_backup
|
|
|
|
msg_info "Verifying Chromium for PDF Generation"
|
|
cd /opt/invoiceninja
|
|
$STD ./vendor/bin/snappdf download
|
|
chown -R www-data:www-data /opt/invoiceninja/vendor/beganovich/snappdf/versions
|
|
msg_ok "Verified Chromium for PDF Generation"
|
|
|
|
msg_info "Running Migrations"
|
|
cd /opt/invoiceninja
|
|
$STD php artisan migrate --force
|
|
$STD php artisan config:clear
|
|
$STD php artisan cache:clear
|
|
$STD php artisan optimize
|
|
chown -R www-data:www-data /opt/invoiceninja
|
|
chmod -R 755 /opt/invoiceninja/storage
|
|
msg_ok "Ran Migrations"
|
|
|
|
msg_info "Starting Services"
|
|
systemctl start php8.4-fpm nginx supervisor
|
|
msg_ok "Started Services"
|
|
|
|
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 "${GATEWAY}${BGN}http://${IP}:8080/setup${CL}"
|