Compare commits

..

5 Commits

Author SHA1 Message Date
MickLesk
a713be7fe8 fix(build): skip empty gateway value in network config
When var_gateway is set to an empty string, the resulting gw= token
in the comma-separated network string causes pct create to fail with
a 'missing key in comma-separated list property' error.

Closes #13421
2026-03-31 20:51:23 +02:00
community-scripts-pr-app[bot]
7511415b89 Update CHANGELOG.md (#13426)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-03-30 20:39:49 +00:00
community-scripts-pr-app[bot]
2b966298f1 Update .app files (#13415)
Co-authored-by: GitHub Actions <github-actions[bot]@users.noreply.github.com>
2026-03-30 09:30:41 +02:00
community-scripts-pr-app[bot]
f985c7e952 Update CHANGELOG.md (#13416)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-03-30 07:30:16 +00:00
community-scripts-pr-app[bot]
76e95ec1d8 Update CHANGELOG.md (#13414)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-03-30 07:29:58 +00:00
2 changed files with 9 additions and 2 deletions

View File

@@ -431,9 +431,15 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
## 2026-03-30
### ❔ Uncategorized
### 🆕 New Scripts
- Rename: BirdNET > BirdNET-Go [@MickLesk](https://github.com/MickLesk) ([#13410](https://github.com/community-scripts/ProxmoxVE/pull/13410))
- Bambuddy ([#13411](https://github.com/community-scripts/ProxmoxVE/pull/13411))
### 🚀 Updated Scripts
- #### 💥 Breaking Changes
- Rename: BirdNET > BirdNET-Go [@MickLesk](https://github.com/MickLesk) ([#13410](https://github.com/community-scripts/ProxmoxVE/pull/13410))
## 2026-03-29

View File

@@ -3530,6 +3530,7 @@ build_container() {
# Gateway
if [[ -n "$GATE" ]]; then
case "$GATE" in
,gw=) ;;
,gw=*) NET_STRING+="$GATE" ;;
*) NET_STRING+=",gw=$GATE" ;;
esac