Compare commits

..

6 Commits

Author SHA1 Message Date
github-actions[bot] 0ed8f8a2b4 Update CHANGELOG.md 2026-09-09 17:55:32 +00:00
Stephen Chin 3b53db7f14 fix(hermesagent): stop spurious root gateway after update (#17126) 2026-09-09 19:55:16 +02:00
community-scripts-pr-app[bot] b9aa86c785 Update CHANGELOG.md (#17139)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-09 17:54:58 +00:00
CanbiZ (MickLesk) 810a6d2e82 vm: drop the discussions link from the summary (#17117) 2026-09-09 19:54:30 +02:00
community-scripts-pr-app[bot] e4a455465d Update CHANGELOG.md (#17134)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-09 13:25:36 +00:00
push-app-to-main[bot] 05d4c186fb Lingarr (#17130)
* Add lingarr (ct)

* Update ct/lingarr.sh

---------

Co-authored-by: push-app-to-main[bot] <203845782+push-app-to-main[bot]@users.noreply.github.com>
Co-authored-by: Sam Heinz <sam@samheinz.com>
2026-09-09 15:25:01 +02:00
4 changed files with 19 additions and 2 deletions
+14
View File
@@ -540,6 +540,20 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-09-09
### 🆕 New Scripts
- Lingarr ([#17130](https://github.com/community-scripts/ProxmoxVE/pull/17130))
### 🚀 Updated Scripts
- vm: drop the discussions link from the summary [@MickLesk](https://github.com/MickLesk) ([#17117](https://github.com/community-scripts/ProxmoxVE/pull/17117))
- #### 🐞 Bug Fixes
- fix(hermesagent): stop spurious root gateway after update [@steveonjava](https://github.com/steveonjava) ([#17126](https://github.com/community-scripts/ProxmoxVE/pull/17126))
## 2026-09-08
### 🆕 New Scripts
+5
View File
@@ -52,6 +52,11 @@ function update_script() {
set -a; source /etc/default/hermes; set +a
/home/hermes/.local/bin/hermes update --yes
'
# See https://github.com/community-scripts/ProxmoxVE/issues/17123
mapfile -t root_gateway_pids < <(ps -eo user=,pid=,args= | awk '$1 == "root" && $0 ~ /\/home\/hermes\/\.hermes\/hermes-agent\/venv\/bin\/python -m hermes_cli\.main gateway run --replace$/ { print $2 }')
if ((${#root_gateway_pids[@]})); then
kill -TERM "${root_gateway_pids[@]}"
fi
chown -R hermes:hermes /home/hermes
msg_ok "Updated Hermes Agent"
-1
View File
@@ -675,4 +675,3 @@ if [ "$START_VM" == "yes" ]; then
fi
msg_ok "Completed successfully!\n"
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"
-1
View File
@@ -612,4 +612,3 @@ if [ "$START_VM" == "yes" ]; then
fi
msg_ok "Completed successfully!\n"
echo "More Info at https://github.com/community-scripts/ProxmoxVE/discussions/836"