From 1b714dceda4a6ca8cc254cab5f1fafc57663ad48 Mon Sep 17 00:00:00 2001 From: Tobias <96661824+CrazyWolf13@users.noreply.github.com> Date: Fri, 28 Aug 2026 03:19:40 +0200 Subject: [PATCH] pve-ups: fix: add pip binary (#16820) * pve-ups: fix: pip binary * pve-ups: fix: pip binary --- ct/pve-ups.sh | 2 +- install/pve-ups-install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/pve-ups.sh b/ct/pve-ups.sh index 4b75633c3..cd1d44527 100644 --- a/ct/pve-ups.sh +++ b/ct/pve-ups.sh @@ -41,7 +41,7 @@ function update_script() { msg_info "Updating Application" cd /opt/pve-usv - $STD uv venv --clear venv + $STD uv venv --clear --seed venv $STD uv pip install --python venv/bin/python . chown -R pveusv:pveusv /opt/pve-usv chmod 0755 deploy/pve-usv-agent.sh diff --git a/install/pve-ups-install.sh b/install/pve-ups-install.sh index 6b37f35a6..460850883 100644 --- a/install/pve-ups-install.sh +++ b/install/pve-ups-install.sh @@ -27,7 +27,7 @@ install -d -o pveusv -g pveusv -m 0750 \ /var/lib/pve-usv/updates chown -R pveusv:pveusv /opt/pve-usv cd /opt/pve-usv -$STD uv venv --clear venv +$STD uv venv --clear --seed venv $STD uv pip install --python venv/bin/python . chmod 0755 deploy/pve-usv-agent.sh msg_ok "Set up Application"