Added ownfoil

This commit is contained in:
Andreas Kruse
2026-03-31 15:14:54 +02:00
parent b986a80934
commit af294f36ea
3 changed files with 192 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
#!/usr/bin/env bash
# Copyright (c) 2021-2026 community-scripts ORG
# Author: pajjski
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://github.com/a1ex4/ownfoil
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
# =============================================================================
# 1. DEPENDENCIES - Only add app-specific dependencies here!
# =============================================================================
msg_info "Installing Dependencies"
$STD apt install -y \
git
msg_ok "Installed Dependencies"
# =============================================================================
# 2: Python Application with uv
# ------------------------------------
setup_uv
fetch_and_deploy_gh_release "ownfoil" "a1ex4/ownfoil" "tarball" "latest" "/opt/ownfoil"
msg_info "Setting up Ownfoil"
cd /opt/ownfoil
$STD uv venv .venv
$STD source .venv/bin/activate
$STD uv pip install -r requirements.txt
msg_ok "Setup ownfoil"
# =============================================================================
# 3. CREATE SYSTEMD SERVICE
# =============================================================================
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/ownfoil.service
[Unit]
Description=ownfoil Service
After=network.target
[Service]
Type=simple
User=root
WorkingDirectory=/opt/ownfoil
ExecStart=/opt/ownfoil/.venv/bin/python /opt/ownfoil/app/app.py
Restart=on-failure
RestartSec=5
[Install]
WantedBy=multi-user.target
EOF
systemctl enable -q --now ownfoil
msg_ok "Created Service"
# =============================================================================
# 4. CLEANUP & FINALIZATION
# =============================================================================
motd_ssh
customize
cleanup_lxc