mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-12 09:02:12 +02:00
c481c3e24e
* fix(fileflows): install .NET 10 ASP.NET Core Runtime to match current release
FileFlows now ships its server/node binaries targeting .NET 10
(Microsoft.NETCore.App 10.0.0), but the install script still installs the
ASP.NET Core Runtime 8.0. On a fresh install the app therefore cannot start:
You must install or update .NET to run this application.
Framework: 'Microsoft.NETCore.App', version '10.0.0' (x64)
The following frameworks were found:
8.0.28 at [/usr/share/dotnet/shared/Microsoft.NETCore.App]
so "dotnet FileFlows.Server.dll --systemd install" fails with exit code 150
(service failed to start) and the container aborts (issue #15686).
Bump the runtime to 10.0 on both branches: aspnetcore-runtime-10.0 from
packages.microsoft.com on amd64 (the same repo and package already used by
igotify, rdtclient and technitiumdns) and dotnet-install --channel 10.0 on
arm64.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
* fix(fileflows): ensure current .NET runtime on update too
An existing install set up under an older .NET (e.g. aspnetcore-runtime-8.0)
would download a newer FileFlows on update but keep the old runtime, failing to
start with the same framework-not-found error. Mirror the runtime handling used
by technitiumdns/rdtclient in update_script.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
---------
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
68 lines
2.0 KiB
Bash
68 lines
2.0 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: kkroboth
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://fileflows.com/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y \
|
|
ffmpeg \
|
|
pciutils \
|
|
imagemagick
|
|
msg_ok "Installed Dependencies"
|
|
|
|
setup_hwaccel
|
|
|
|
msg_info "Installing ASP.NET Core Runtime"
|
|
if [[ "$(arch_resolve)" == "arm64" ]]; then
|
|
# packages.microsoft.com only ships amd64 debs for Debian; use dotnet-install on arm64
|
|
curl -fsSL https://dot.net/v1/dotnet-install.sh -o /tmp/dotnet-install.sh
|
|
$STD bash /tmp/dotnet-install.sh --channel 10.0 --runtime aspnetcore --install-dir /usr/lib/dotnet10
|
|
ln -sf /usr/lib/dotnet10/dotnet /usr/bin/dotnet
|
|
rm -f /tmp/dotnet-install.sh
|
|
else
|
|
setup_deb822_repo \
|
|
"microsoft" \
|
|
"https://packages.microsoft.com/keys/microsoft-2025.asc" \
|
|
"https://packages.microsoft.com/debian/13/prod/" \
|
|
"trixie"
|
|
$STD apt install -y aspnetcore-runtime-10.0
|
|
fi
|
|
msg_ok "Installed ASP.NET Core Runtime"
|
|
|
|
fetch_and_deploy_from_url "https://fileflows.com/downloads/zip" "/opt/fileflows"
|
|
|
|
$STD ln -svf /usr/bin/ffmpeg /usr/local/bin/ffmpeg
|
|
$STD ln -svf /usr/bin/ffprobe /usr/local/bin/ffprobe
|
|
$STD rm -rf /opt/fileflows/Server/runtimes/win-*
|
|
|
|
read -r -p "${TAB3}Do you want to install FileFlows Server or Node? (S/N): " install_server
|
|
|
|
if [[ "$install_server" =~ ^[Ss]$ ]]; then
|
|
msg_info "Installing FileFlows Server"
|
|
cd /opt/fileflows/Server
|
|
$STD dotnet FileFlows.Server.dll --systemd install --root true
|
|
systemctl enable -q --now fileflows
|
|
msg_ok "Installed FileFlows Server"
|
|
else
|
|
msg_info "Installing FileFlows Node"
|
|
cd /opt/fileflows/Node
|
|
$STD dotnet FileFlows.Node.dll
|
|
$STD dotnet FileFlows.Node.dll --systemd install --root true
|
|
systemctl enable -q --now fileflows-node
|
|
msg_ok "Installed FileFlows Node"
|
|
fi
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|