2025-04-28 14:52:14 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2025-04-28 14:52:14 +02:00
|
|
|
# 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"
|
2025-12-10 21:38:24 +01:00
|
|
|
setup_deb822_repo \
|
|
|
|
|
"microsoft" \
|
|
|
|
|
"https://packages.microsoft.com/keys/microsoft.asc" \
|
|
|
|
|
"https://packages.microsoft.com/debian/12/prod/" \
|
|
|
|
|
"bookworm" \
|
|
|
|
|
"main"
|
2025-10-09 19:43:23 +02:00
|
|
|
$STD apt install -y \
|
2025-05-28 11:25:13 +02:00
|
|
|
dotnet-sdk-8.0 \
|
|
|
|
|
aspnetcore-runtime-8.0
|
2025-04-28 14:52:14 +02:00
|
|
|
msg_ok "Installed Dependencies"
|
|
|
|
|
|
2025-12-10 21:38:24 +01:00
|
|
|
fetch_and_deploy_gh_release "UmlautAdaptarr" "PCJones/Umlautadaptarr" "prebuild" "latest" "/opt/UmlautAdaptarr" "linux-x64.zip"
|
2025-04-28 14:52:14 +02:00
|
|
|
|
|
|
|
|
msg_info "Creating Service"
|
|
|
|
|
cat <<EOF >/etc/systemd/system/umlautadaptarr.service
|
|
|
|
|
[Unit]
|
|
|
|
|
Description=UmlautAdaptarr Service
|
|
|
|
|
After=network.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
WorkingDirectory=/opt/UmlautAdaptarr
|
2025-04-29 13:17:04 +02:00
|
|
|
ExecStart=/usr/bin/dotnet /opt/UmlautAdaptarr/UmlautAdaptarr.dll --urls=http://0.0.0.0:5005
|
2025-04-28 14:52:14 +02:00
|
|
|
Restart=always
|
|
|
|
|
User=root
|
|
|
|
|
Group=root
|
|
|
|
|
Environment=ASPNETCORE_ENVIRONMENT=Production
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=multi-user.target
|
|
|
|
|
EOF
|
2025-12-10 21:38:24 +01:00
|
|
|
systemctl enable -q --now umlautadaptarr
|
2025-04-28 14:52:14 +02:00
|
|
|
msg_ok "Created Service"
|
|
|
|
|
|
|
|
|
|
motd_ssh
|
|
|
|
|
customize
|
2025-11-22 17:27:13 +01:00
|
|
|
cleanup_lxc
|