mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-14 01:45:08 +02:00
f828e629b5
* fix(hyperion): keep service running after container reboot The packaged hyperion@.service declares "Requisite=network.target" but is not ordered After=network.target. Inside an LXC the unit's start job can be evaluated before network.target is active, and because Requisite= is stricter than Requires= (it does not pull the unit in or wait for it) the job fails with "Dependency failed", so Hyperion does not start after a reboot. Add a systemd drop-in that clears Requisite=; ordering is still provided by the base unit's Wants=/After=network-online.target. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * Fix Hyperion service startup issue in LXC Remove Requisite from Hyperion service to ensure it starts correctly in LXC environments. --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: CanbiZ (MickLesk) <47820557+MickLesk@users.noreply.github.com>
39 lines
912 B
Bash
39 lines
912 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 tteck
|
|
# Author: tteck (tteckster)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://hyperion-project.org/forum/
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
setup_hwaccel
|
|
|
|
msg_info "Setting up Hyperion repository"
|
|
setup_deb822_repo \
|
|
"hyperion" \
|
|
"https://releases.hyperion-project.org/hyperion.pub.key" \
|
|
"https://apt.releases.hyperion-project.org" \
|
|
"$(get_os_info codename)"
|
|
msg_ok "Set up Hyperion repository"
|
|
|
|
msg_info "Installing Hyperion"
|
|
$STD apt install -y hyperion
|
|
mkdir -p /etc/systemd/system/hyperion@.service.d
|
|
cat <<EOF >/etc/systemd/system/hyperion@.service.d/override.conf
|
|
[Unit]
|
|
Requisite=
|
|
EOF
|
|
systemctl daemon-reload
|
|
systemctl enable -q --now hyperion@root
|
|
msg_ok "Installed Hyperion"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|