mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-06 10:55:56 +01:00
* Initial plan * fix(cross-seed): add build-essential to resolve missing make error Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> * fix(cross-seed): use apt and ensure_dependencies per review feedback Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com>
48 lines
1023 B
Bash
48 lines
1023 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: Jakub Matraszek (jmatraszek)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://www.cross-seed.org | Github: https://github.com/cross-seed/cross-seed
|
|
|
|
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 build-essential
|
|
msg_ok "Installed Dependencies"
|
|
|
|
NODE_VERSION="24" setup_nodejs
|
|
|
|
msg_info "Setup Cross-Seed"
|
|
$STD npm install cross-seed@latest -g
|
|
$STD cross-seed gen-config
|
|
msg_ok "Setup Cross-Seed"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/cross-seed.service
|
|
[Unit]
|
|
Description=Cross-Seed daemon Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=/usr/bin/cross-seed daemon
|
|
Restart=on-failure
|
|
RestartSec=30
|
|
User=root
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now cross-seed
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|