Compare commits

..

7 Commits

Author SHA1 Message Date
push-app-to-main[bot]
d1d1590db9 Add mailpit (ct) 2026-09-01 14:42:41 +00:00
community-scripts-pr-app[bot]
abf921e45f Update CHANGELOG.md (#16940)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-01 12:50:46 +00:00
Phill Fernandes
a9255417d4 fix(add-iptag): merge live IPv4 addresses for running LXCs (#16691) 2026-09-01 14:50:21 +02:00
community-scripts-pr-app[bot]
32cc03c4fb Update CHANGELOG.md (#16936)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-01 11:36:30 +00:00
Copilot
d075a7f98b Revert Aurral to Node22 in ct and install scripts (#16930)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com>
2026-09-01 13:36:02 +02:00
community-scripts-pr-app[bot]
037645a2ef Update CHANGELOG.md (#16935)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2026-09-01 11:29:20 +00:00
CanbiZ (MickLesk)
1a06e9628c Move the next 25 scripts onto the core engine (#16934)
The 25 most-installed ct scripts still on misc/build.func, by install
count: homarr, influxdb, sonarr, radarr, networkoptimizer, authentik,
stirling-pdf, seerr, prowlarr, searxng, wordpress, zabbix, omada,
homeassistant, pegaprox, crafty-controller, iventoy, homelable,
flaresolverr, metube, netbird, casaos, obsidian-livesync, npmplus,
wazuh. ProxmoxVE goes from 115 migrated to 140.

Same three checks as #16749, since "migrate" has meant more than a line
swap before:

  - None of the 25 has an alpine-* variant, so there is no merge to do.
  - None references misc/ outside its bootstrap line.
  - Two functions exist only in misc/ (_gl_asset_urls,
    _send_abort_telemetry) and none of the 25 calls either.

So it is one line per script. Every head is byte-identical to the ones
migrated earlier, each diff is exactly 3+/1-, and all 25 parse.

Worth watching: scanopy is not in this set but sits at 32.9% success,
and casaos at 49.4% and networkoptimizer at 48.6% are in it. If those
two move, the engine is one changed variable among others.
2026-09-01 13:28:55 +02:00
7 changed files with 136 additions and 4 deletions

View File

@@ -536,14 +536,25 @@ Exercise vigilance regarding copycat or coat-tailing sites that seek to exploit
- #### 🐞 Bug Fixes
- Revert Aurral to Node22 [@Copilot](https://github.com/Copilot) ([#16930](https://github.com/community-scripts/ProxmoxVE/pull/16930))
- jellyfin: verify repo suite via fallback chain and use ensure_dependencies for clearer apt failures [@MickLesk](https://github.com/MickLesk) ([#16916](https://github.com/community-scripts/ProxmoxVE/pull/16916))
- #### 🔧 Refactor
- Move the next 25 scripts onto the core engine [@MickLesk](https://github.com/MickLesk) ([#16934](https://github.com/community-scripts/ProxmoxVE/pull/16934))
### 💾 Core
- Generate app headers [@github-actions[bot]](https://github.com/github-actions[bot]) ([core#15](https://github.com/community-scripts/core/pull/15))
- Report the exit code the engine actually saw [@MickLesk](https://github.com/MickLesk) ([core#17](https://github.com/community-scripts/core/pull/17))
- Silence npm's update notice so the real error stays visible [@MickLesk](https://github.com/MickLesk) ([core#16](https://github.com/community-scripts/core/pull/16))
### 🧰 Tools
- #### 🐞 Bug Fixes
- fix(add-iptag): merge live IPv4 addresses for running LXCs [@phillf](https://github.com/phillf) ([#16691](https://github.com/community-scripts/ProxmoxVE/pull/16691))
## 2026-08-31
### 🆕 New Scripts

View File

@@ -38,7 +38,7 @@ function update_script() {
msg_ok "Stopped Service"
CLEAN_INSTALL=1 fetch_and_deploy_gh_release "aurral" "lklynet/aurral" "tarball"
NODE_VERSION="26" setup_nodejs
NODE_VERSION="22" setup_nodejs
msg_info "Updating Aurral"
cd /opt/aurral

6
ct/headers/mailpit Normal file
View File

@@ -0,0 +1,6 @@
__ ___ _ __ _ __
/ |/ /___ _(_) /___ (_) /_
/ /|_/ / __ `/ / / __ \/ / __/
/ / / / /_/ / / / /_/ / / /_
/_/ /_/\__,_/_/_/ .___/_/\__/
/_/

62
ct/mailpit.sh Normal file
View File

@@ -0,0 +1,62 @@
#!/usr/bin/env bash
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://mailpit.axllent.org/
APP="Mailpit"
var_tags="${var_tags:-smtp;email;testing;development}"
var_cpu="${var_cpu:-1}"
var_ram="${var_ram:-512}"
var_disk="${var_disk:-2}"
var_os="${var_os:-debian}"
var_version="${var_version:-13}"
var_arm64="${var_arm64:-yes}"
var_unprivileged="${var_unprivileged:-1}"
header_info "$APP"
variables
color
catch_errors
function update_script() {
header_info
check_container_storage
check_container_resources
if [[ ! -f /opt/mailpit/mailpit ]]; then
msg_error "No ${APP} Installation Found!"
exit
fi
if check_for_gh_release "mailpit" "axllent/mailpit"; then
msg_info "Stopping Service"
systemctl stop mailpit
msg_ok "Stopped Service"
create_backup /opt/mailpit/.env \
/opt/mailpit/data
fetch_and_deploy_gh_release "mailpit" "axllent/mailpit" "prebuild" "latest" "/opt/mailpit" "mailpit-linux-$(arch_resolve).tar.gz"
restore_backup
msg_info "Starting Service"
systemctl start mailpit
msg_ok "Started Service"
msg_ok "Updated successfully!"
fi
exit
}
start
build_container
description
msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
echo -e "${GATEWAY}${BGN}http://${IP}:8025${CL}"

View File

@@ -22,7 +22,7 @@ $STD apt install -y \
fonts-dejavu-core
msg_ok "Installed Dependencies"
NODE_VERSION="26" setup_nodejs
NODE_VERSION="22" setup_nodejs
fetch_and_deploy_gh_release "yt-dlp" "yt-dlp/yt-dlp" "singlefile" "latest" "/usr/local/bin" "yt-dlp"
fetch_and_deploy_gh_release "aurral" "lklynet/aurral" "tarball"

View File

@@ -0,0 +1,51 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: MickLesk (CanbiZ)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://mailpit.axllent.org/
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
fetch_and_deploy_gh_release "mailpit" "axllent/mailpit" "prebuild" "latest" "/opt/mailpit" "mailpit-linux-$(arch_resolve).tar.gz"
msg_info "Configuring Mailpit"
mkdir -p /opt/mailpit/data
cat <<EOF >/opt/mailpit/.env
MP_DATABASE=/opt/mailpit/data/mailpit.db
MP_UI_BIND_ADDR=0.0.0.0:8025
MP_SMTP_BIND_ADDR=0.0.0.0:1025
MP_DISABLE_VERSION_CHECK=true
EOF
msg_ok "Configured Mailpit"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/mailpit.service
[Unit]
Description=Mailpit Email Testing Server
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/mailpit
EnvironmentFile=/opt/mailpit/.env
ExecStart=/opt/mailpit/mailpit
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
EOF
systemctl enable -q --now mailpit
msg_ok "Created Service"
motd_ssh
customize
cleanup_lxc

View File

@@ -1003,8 +1003,10 @@ get_lxc_ips() {
fi
fi
# Method 3: Direct container command to get ALL IPs if previous methods failed
if [[ -z "$ips" ]]; then
# Method 3: Merge live IPv4 addresses from running containers.
# Earlier methods can find only the primary net0/eth0 address; this probe
# also discovers Docker bridges, Tailscale, and other guest interfaces.
if [[ "${STATUS_CACHE[lxc_${vmid}]:-}" == "running" ]]; then
local container_ips=$(timeout 5s pct exec "$vmid" -- ip -4 addr show 2>/dev/null | grep -oE 'inet ([0-9]{1,3}\.){3}[0-9]{1,3}' | awk '{print $2}' | grep -v '127.0.0.1')
if [[ -n "$container_ips" ]]; then
while IFS= read -r ip; do