Compare commits

...

3 Commits

Author SHA1 Message Date
MickLesk 843a19ad2d openziti-controller: prevent apt hang on postinst TTY prompt 2026-08-10 17:42:20 +02:00
MickLesk 1001309bde Document the dev mode flags that exist
dryrun was listed but is gone from core: it intercepted only the
silent() wrapper, so pct create ran anyway and the container was built.
net and timing were missing, as was the picker that dev_mode without a
flag now opens.
2026-08-10 15:21:10 +02:00
community-scripts-pr-app[bot] d9d34761d2 Update CHANGELOG.md (#16392)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-08-10 10:02:50 +00:00
4 changed files with 20 additions and 3 deletions
+6
View File
@@ -529,6 +529,12 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- TeslaMate ([#16385](https://github.com/community-scripts/ProxmoxVE/pull/16385)) - TeslaMate ([#16385](https://github.com/community-scripts/ProxmoxVE/pull/16385))
- tor-snowflake ([#15684](https://github.com/community-scripts/ProxmoxVE/pull/15684)) - tor-snowflake ([#15684](https://github.com/community-scripts/ProxmoxVE/pull/15684))
### 🚀 Updated Scripts
- #### 🐞 Bug Fixes
- ErsatzTV: update ffmpeg to 8.1 version [@MickLesk](https://github.com/MickLesk) ([#16383](https://github.com/community-scripts/ProxmoxVE/pull/16383))
### 🧰 Tools ### 🧰 Tools
- post-pdm-install ([#16368](https://github.com/community-scripts/ProxmoxVE/pull/16368)) - post-pdm-install ([#16368](https://github.com/community-scripts/ProxmoxVE/pull/16368))
+12 -1
View File
@@ -172,8 +172,19 @@ dev_mode="trace,keep" bash -c "$(curl -fsSL https://raw.githubusercontent.com/co
| `pause` | Pauses execution at key points before customization | | `pause` | Pauses execution at key points before customization |
| `breakpoint` | Drops to a shell at hardcoded `breakpoint` calls in scripts | | `breakpoint` | Drops to a shell at hardcoded `breakpoint` calls in scripts |
| `logs` | Saves detailed build logs to `/var/log/community-scripts/` | | `logs` | Saves detailed build logs to `/var/log/community-scripts/` |
| `dryrun` | Bypasses actual container creation (limited support) |
| `motd` | Forces an update of the Message of the Day | | `motd` | Forces an update of the Message of the Day |
| `net` | Logs every engine fetch: HTTP status, duration and URL |
| `timing` | Times each step and lists the slowest ones at the end |
Any flag also prints the resolved context first — where the engine came from,
both roots and URLs, the app, platform and versions — and repaints the greens
red, so a dev run is never mistaken for a normal install.
Setting `dev_mode` without naming a flag (`dev_mode=`, `=1`, `=ask`) opens a
picker before the install menu.
`dryrun` was removed: it only intercepted the `silent()` wrapper, so `pct
create` still ran and the container was still built.
--- ---
+1 -1
View File
@@ -30,7 +30,7 @@ function update_script() {
fi fi
msg_info "Updating $APP LXC" msg_info "Updating $APP LXC"
$STD apt update $STD apt update
$STD apt -y upgrade $STD apt -y upgrade </dev/null
msg_ok "Updated $APP LXC" msg_ok "Updated $APP LXC"
msg_ok "Updated successfully!" msg_ok "Updated successfully!"
exit exit
+1 -1
View File
@@ -24,7 +24,7 @@ Components: main
Signed-By: /usr/share/keyrings/openziti.gpg Signed-By: /usr/share/keyrings/openziti.gpg
EOF EOF
$STD apt update $STD apt update
$STD apt install -y openziti-controller openziti-console $STD apt install -y openziti-controller openziti-console </dev/null
msg_ok "Installed openziti" msg_ok "Installed openziti"
read -r -p "${TAB3}Would you like to go through the auto configuration now? <y/N>" prompt read -r -p "${TAB3}Would you like to go through the auto configuration now? <y/N>" prompt