Compare commits

..

3 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] ad94016835 Clarify DISABLE_UPDATE default value 2026-06-23 04:29:01 +00:00
copilot-swe-agent[bot] f9abae77a4 Handle unset DISABLE_UPDATE safely in build.func 2026-06-23 04:28:34 +00:00
copilot-swe-agent[bot] 8cbdd0ac4d Fix unset DISABLE_UPDATE handling in build prompt guard 2026-06-23 04:27:39 +00:00
2 changed files with 1 additions and 10 deletions
-10
View File
@@ -486,16 +486,6 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-06-23
### 💾 Core
- Fix syntax error in build function [@l0caldadmin](https://github.com/l0caldadmin) ([#15337](https://github.com/community-scripts/ProxmoxVE/pull/15337))
### ❔ Uncategorized
- fix(build.func): remove duplicate if statement causing syntax error on container creation [@Copilot](https://github.com/Copilot) ([#15338](https://github.com/community-scripts/ProxmoxVE/pull/15338))
## 2026-06-22
### 🆕 New Scripts
+1
View File
@@ -5721,6 +5721,7 @@ create_lxc_container() {
msg_debug "No newer candidate for pve-container/lxc-pve (installed=$_pvec_i/$_lxcp_i, cand=$_pvec_c/$_lxcp_c)"
return 0
fi
local _disable_update="${DISABLE_UPDATE:-no}"
if [[ "${PHS_SILENT:-0}" == "1" || "${_disable_update,,}" == "yes" ]]; then
msg_info "Skipping host LXC stack upgrade prompt (unattended mode)"