mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-07-03 04:27:38 +00:00
55 lines
1.1 KiB
Bash
55 lines
1.1 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 community-scripts ORG
|
|
# Author: Slaviša Arežina (tremor021)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/Casvt/Kapowarr
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
|
|
msg_info "Setup Python3"
|
|
$STD apt-get install -y python3-pip
|
|
msg_ok "Setup Python3"
|
|
|
|
setup_uv
|
|
fetch_and_deploy_gh_release "kapowarr" "Casvt/Kapowarr"
|
|
|
|
msg_info "Setup Kapowarr"
|
|
cd /opt/kapowarr
|
|
$STD uv venv .venv
|
|
$STD source .venv/bin/activate
|
|
$STD uv pip install --upgrade pip
|
|
$STD uv pip install --no-cache-dir -r requirements.txt
|
|
msg_ok "Installed Kapowarr"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/kapowarr.service
|
|
[Unit]
|
|
Description=Kapowarr Service
|
|
After=network.target
|
|
|
|
[Service]
|
|
WorkingDirectory=/opt/kapowarr/
|
|
ExecStart=/opt/kapowarr/.venv/bin/python3 Kapowarr.py
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now kapowarr
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
|
|
msg_info "Cleaning up"
|
|
$STD apt-get -y autoremove
|
|
$STD apt-get -y autoclean
|
|
msg_ok "Cleaned"
|