Files

53 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2025-04-28 14:52:14 +02:00
#!/usr/bin/env bash
# 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-2025.asc" \
"https://packages.microsoft.com/debian/13/prod/" \
"trixie" \
2025-12-10 21:38:24 +01:00
"main"
2025-10-09 19:43:23 +02:00
$STD apt install -y \
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
cleanup_lxc