Compare commits

..

4 Commits

Author SHA1 Message Date
copilot-swe-agent[bot] d1bfdb0a32 fix(build.func): remove duplicate if statement causing syntax error 2026-06-23 05:27:44 +00:00
copilot-swe-agent[bot] 8e2489ef97 Initial plan 2026-06-23 05:25:28 +00:00
community-scripts-pr-app[bot] aab46b25e3 Update CHANGELOG.md (#15330)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-06-23 04:32:10 +00:00
CanbiZ (MickLesk) b18e9298b1 Implement local _disable_update for conditional upgrade handling
Add a local variable to manage update disabling based on environment settings.
2026-06-23 06:31:44 +02:00
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -486,6 +486,8 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
</details>
## 2026-06-23
## 2026-06-22
### 🆕 New Scripts
+2 -2
View File
@@ -5721,8 +5721,8 @@ 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
if [[ "${PHS_SILENT:-0}" == "1" || "${DISABLE_UPDATE,,}" == "yes" ]]; then
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)"
return 2
fi