mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-06-19 14:01:21 +02:00
2178f72ec9
also adds patching of arm64 templates for if it doesnt include /etc/network/interfaces adds fallback to get_arch_value for alpine adds neon check for mongodb for arm (avx equivalent) missing: alpine-teamspeak-server apprise-api archivebox audiobookshelf authentik autocaliweb baserow byparr checkmate checkmk degoog domain-locker elementsynapse flaresolverr flatnotes freepbx frigate
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 [[ "$(get_arch_value)" == "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 8.0 --runtime aspnetcore --install-dir /usr/lib/dotnet8
|
|
ln -sf /usr/lib/dotnet8/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-8.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
|