mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-07-27 16:22:53 +02:00
cfaed33534
Both scripts provision Debian 13 containers (var_version 13) but add a Debian 12 (bookworm) non-free apt source to obtain unrar. Because the base image only enables the `main` component, trixie's non-free is never enabled, so bookworm is the only source offering unrar and the containers deterministically install the Debian 12 build (1:6.2.6-1+deb12u1) instead of trixie's 1:7.1.8-1. Mylar3 additionally never removes the source, leaving bookworm non-free and non-free-firmware permanently enabled at priority 500 on a Debian 13 system. Aligns both with install/sabnzbd-install.sh, which already sets up the same unrar dependency correctly against trixie. Co-authored-by: Tim Moore <tim.moore@ingenuity.com.au> Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
60 lines
1.5 KiB
Bash
60 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
|
# Author: davalanche | Co-Author: Slaviša Arežina (tremor021)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/mylar3/mylar3
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Installing Dependencies"
|
|
cat <<EOF >/etc/apt/sources.list.d/non-free.sources
|
|
Types: deb
|
|
URIs: http://deb.debian.org/debian
|
|
Suites: trixie
|
|
Components: non-free non-free-firmware
|
|
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
|
|
EOF
|
|
$STD apt update
|
|
$STD apt install -y unrar
|
|
msg_ok "Installed Dependencies"
|
|
|
|
PYTHON_VERSION="3.11" setup_uv
|
|
fetch_and_deploy_gh_release "mylar3" "MylarComics/mylar3" "tarball"
|
|
|
|
msg_info "Installing Mylar3"
|
|
mkdir -p /opt/mylar3-data
|
|
$STD uv venv --clear /opt/mylar3/.venv
|
|
$STD /opt/mylar3/.venv/bin/python -m ensurepip --upgrade
|
|
$STD /opt/mylar3/.venv/bin/python -m pip install --upgrade pip
|
|
$STD /opt/mylar3/.venv/bin/python -m pip install --no-cache-dir -r /opt/mylar3/requirements.txt
|
|
msg_ok "Installed Mylar3"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/mylar3.service
|
|
[Unit]
|
|
Description=Mylar3 Service
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
ExecStart=/opt/mylar3/.venv/bin/python /opt/mylar3/Mylar.py --daemon --nolaunch --datadir=/opt/mylar3-data
|
|
GuessMainPID=no
|
|
Type=forking
|
|
Restart=on-failure
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now mylar3
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|