From: Jakub Czajka Date: Mon, 16 Oct 2023 21:38:00 +0000 (+0200) Subject: Install python-venv when creating virtual environments. X-Git-Url: https://git.ekhem.eu.org/?a=commitdiff_plain;h=1f50c7844741aeecf9dbb4b1e94a69c49ef0d5ab;p=turnup.git Install python-venv when creating virtual environments. --- diff --git a/storage_drive.yaml b/storage_drive.yaml index a4f04b4..e87439e 100644 --- a/storage_drive.yaml +++ b/storage_drive.yaml @@ -22,6 +22,12 @@ owner: git group: storage become: true + - name: Install python-venv + package: + name: + - python3.11-venv + state: latest + become: yes - name: Checkout to the destination directory command: | git --work-tree={{ dest }} --git-dir={{ item }} checkout main --force diff --git a/yt_dlp_server.yaml b/yt_dlp_server.yaml index ea72847..0133368 100644 --- a/yt_dlp_server.yaml +++ b/yt_dlp_server.yaml @@ -26,6 +26,7 @@ package: name: - ffmpeg + - python3.11-venv state: latest become: yes - name: Checkout to the destination directory