mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-09-05 15:00:57 +00:00
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.
81 lines
2.8 KiB
Bash
81 lines
2.8 KiB
Bash
#!/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 tteck
|
||
# Author: tteck (tteckster)
|
||
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||
# Source: https://www.tp-link.com/us/support/download/omada-software-controller/
|
||
|
||
APP="Omada"
|
||
var_tags="${var_tags:-tp-link;controller}"
|
||
var_cpu="${var_cpu:-2}"
|
||
var_ram="${var_ram:-3072}"
|
||
var_disk="${var_disk:-8}"
|
||
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 [[ ! -d /opt/tplink ]]; then
|
||
msg_error "No ${APP} Installation Found!"
|
||
exit
|
||
fi
|
||
|
||
msg_info "Updating MongoDB"
|
||
if [[ "$(arch_resolve)" == "arm64" ]] || lscpu | grep -q 'avx'; then
|
||
MONGO_VERSION="8.0" setup_mongodb
|
||
else
|
||
msg_error "No AVX detected (CPU-Flag)! We have discontinued support for this. You are welcome to try it manually with a Debian LXC, but due to the many issues with Omada, we currently only support AVX CPUs."
|
||
exit 10
|
||
fi
|
||
|
||
JAVA_VERSION="21" setup_java
|
||
|
||
OMADA_URL=$(curl -fsSL -A "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Safari/605.1.15" "https://support.omadanetworks.com/en/download/software/omada-controller/" |
|
||
grep -o 'https://static\.tp-link\.com/upload/software/[^"]*linux_x64[^"]*\.deb' |
|
||
head -n1)
|
||
OMADA_PKG=$(basename "${OMADA_URL}")
|
||
VERSION=$(sed -n 's/.*_v\([0-9.]*\)_linux.*/\1/p' <<<"${OMADA_PKG}")
|
||
|
||
CURRENT_VERSION=$(cat $HOME/.omada 2>/dev/null || echo "0")
|
||
|
||
if dpkg --compare-versions "${VERSION}" gt "${CURRENT_VERSION}"; then
|
||
|
||
msg_info "Updating Omada Controller"
|
||
|
||
if [ -z "${OMADA_PKG}" ]; then
|
||
msg_error "Could not retrieve Omada package – server may be down."
|
||
exit
|
||
fi
|
||
curl -fsSL "${OMADA_URL}" -o "${OMADA_PKG}"
|
||
export DEBIAN_FRONTEND=noninteractive
|
||
$STD dpkg -i "${OMADA_PKG}"
|
||
rm -f "${OMADA_PKG}"
|
||
echo "${VERSION}" >$HOME/.omada
|
||
msg_ok "Updated Omada Controller to ${VERSION}"
|
||
msg_ok "Updated successfully!"
|
||
else
|
||
msg_ok "No update available: ${APP} (${CURRENT_VERSION})"
|
||
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}https://${IP}:8043${CL}"
|