Compare commits

..

2 Commits

Author SHA1 Message Date
community-scripts-pr-app[bot] 5919f0773e Update CHANGELOG.md (#16039)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-07-26 13:39:16 +00:00
Johann Grobe 895ecdc71e add node update to update script (#16014) 2026-07-26 23:38:55 +10:00
3 changed files with 8 additions and 5 deletions
+6
View File
@@ -510,6 +510,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-07-26
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- [endurain] add node update to update script [@johanngrobe](https://github.com/johanngrobe) ([#16014](https://github.com/community-scripts/ProxmoxVE/pull/16014))
## 2026-07-25
### 🚀 Updated Scripts
+2
View File
@@ -34,6 +34,8 @@ function update_script() {
systemctl stop endurain
msg_ok "Stopped Service"
NODE_VERSION="24" setup_nodejs
create_backup /opt/endurain/.env /opt/endurain/frontend/dist/env.js
CLEAN_INSTALL=1 fetch_and_deploy_codeberg_release "endurain" "endurain-project/endurain" "tarball" "latest" "/opt/endurain"
-5
View File
@@ -30,11 +30,6 @@ msg_ok "Installed InvenTree"
msg_info "Configuring InvenTree"
if [[ -f /etc/inventree/config.yaml ]]; then
sed -i "s|site_url:.*|site_url: http://${LOCAL_IP}|" /etc/inventree/config.yaml
if ! grep -q "^ engine:" /etc/inventree/config.yaml; then
mkdir -p /home/inventree/data
chown inventree:inventree /home/inventree/data
sed -i "/^database:$/a\\ engine: sqlite3\\n name: '/home/inventree/data/database.sqlite3'" /etc/inventree/config.yaml
fi
fi
$STD inventree run invoke update
msg_ok "Configured InvenTree"