mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-29 17:22:53 +02:00
0ce1cea6cd
* UmlautAdaptarr: use the Debian 13 Microsoft repo with its 2025 signing key The container is Debian 13 (var_version 13) but the script configures the Microsoft debian/12 prod repo with suite bookworm. The move to debian/13 was reverted in #8392 because apt reported "OpenPGP signature verification failed" (#8385), diagnosed at the time as Microsoft not having populated the trixie repo. The actual cause was the signing key: debian/13/prod is signed by EE4D7792F748182B (microsoft-2025.asc), while the script kept microsoft.asc (EB3E94ADBE1229CF). The suite and URL were changed but the key was not. The trixie repo carries the required packages at current patch level (dotnet-sdk-8.0 8.0.423-1, aspnetcore-runtime-8.0 8.0.29-1). This makes the call identical to the six other scripts already on the Debian 13 Microsoft repo (technitiumdns, igotify, mail-archiver, rdtclient, fileflows, immichframe). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> * UmlautAdaptarr: migrate existing containers to the Debian 13 repo on update Per review feedback: the install-side fix only helps new containers. Existing ones keep the Debian 12 repo indefinitely, because update_script only fetches a GitHub release and never touches apt. Repoints them when the stale Debian 12 repo is detected, mirroring the conditional setup_deb822_repo calls in ct/technitiumdns.sh and ct/fileflows.sh. The guard makes this a no-op once migrated. setup_deb822_repo's microsoft* globs also clear the pre-#9839 microsoft-prod.sources layout; its key lived in /usr/share/keyrings, which cleanup_old_repo_files does not cover, so it is removed explicitly as ct/technitiumdns.sh does. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> --------- Co-authored-by: Tim Moore <tim.moore@ingenuity.com.au> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
68 lines
2.0 KiB
Bash
68 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: elvito
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/PCJones/UmlautAdaptarr
|
|
|
|
APP="UmlautAdaptarr"
|
|
var_tags="${var_tags:-arr}"
|
|
var_cpu="${var_cpu:-1}"
|
|
var_ram="${var_ram:-512}"
|
|
var_disk="${var_disk:-4}"
|
|
var_os="${var_os:-debian}"
|
|
var_version="${var_version:-13}"
|
|
var_arm64="${var_arm64:-no}"
|
|
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/UmlautAdaptarr ]]; then
|
|
msg_error "No ${APP} Installation Found!"
|
|
exit
|
|
fi
|
|
|
|
if grep -qs "packages.microsoft.com/debian/12" /etc/apt/sources.list.d/microsoft*.sources; then
|
|
msg_info "Migrating Microsoft Repository to Debian 13"
|
|
setup_deb822_repo \
|
|
"microsoft" \
|
|
"https://packages.microsoft.com/keys/microsoft-2025.asc" \
|
|
"https://packages.microsoft.com/debian/13/prod/" \
|
|
"trixie" \
|
|
"main"
|
|
rm -f /usr/share/keyrings/microsoft-prod.gpg
|
|
msg_ok "Migrated Microsoft Repository to Debian 13"
|
|
fi
|
|
|
|
if check_for_gh_release "UmlautAdaptarr" "PCJones/Umlautadaptarr"; then
|
|
msg_info "Stopping Service"
|
|
systemctl stop umlautadaptarr
|
|
msg_ok "Stopped Service"
|
|
|
|
create_backup /opt/UmlautAdaptarr/appsettings.json
|
|
fetch_and_deploy_gh_release "UmlautAdaptarr" "PCJones/Umlautadaptarr" "prebuild" "latest" "/opt/UmlautAdaptarr" "linux-x64.zip"
|
|
restore_backup
|
|
|
|
msg_info "Starting Service"
|
|
systemctl start umlautadaptarr
|
|
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}:5005${CL}"
|