mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-02-16 18:23:27 +01:00
The install script overwrote the correct appsettings.json shipped in the release archive with a hardcoded copy that was missing newer required fields (ApiKey, ProxyPort, EnableChangedTitleCache) and had structural differences (Lidarr/Readarr as arrays instead of objects), causing the service to fail on startup. - Remove hardcoded appsettings.json from install script (release archive already ships the correct version) - Backup and restore appsettings.json during updates to preserve user configuration Closes #11665
53 lines
1.2 KiB
Bash
53 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# 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
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
setup_deb822_repo \
|
|
"microsoft" \
|
|
"https://packages.microsoft.com/keys/microsoft.asc" \
|
|
"https://packages.microsoft.com/debian/12/prod/" \
|
|
"bookworm" \
|
|
"main"
|
|
$STD apt install -y \
|
|
dotnet-sdk-8.0 \
|
|
aspnetcore-runtime-8.0
|
|
msg_ok "Installed Dependencies"
|
|
|
|
fetch_and_deploy_gh_release "UmlautAdaptarr" "PCJones/Umlautadaptarr" "prebuild" "latest" "/opt/UmlautAdaptarr" "linux-x64.zip"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/umlautadaptarr.service
|
|
[Unit]
|
|
Description=UmlautAdaptarr Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
WorkingDirectory=/opt/UmlautAdaptarr
|
|
ExecStart=/usr/bin/dotnet /opt/UmlautAdaptarr/UmlautAdaptarr.dll --urls=http://0.0.0.0:5005
|
|
Restart=always
|
|
User=root
|
|
Group=root
|
|
Environment=ASPNETCORE_ENVIRONMENT=Production
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now umlautadaptarr
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|