CHANGE: adds ansible requirements file and a script for updating it on production machines, updates pip requirements

This commit is contained in:
2026-08-18 12:26:00 +04:00
parent ca24bb73dc
commit 271213d1ca
3 changed files with 36 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
source .venv/bin/activate
# Install python packages
pip install -r requirements.txt
# Install collections from the file
ansible-galaxy collection install -r requirements.yml -p ./collections/
# Install roles
ansible-galaxy role install -r requirements.yml -p ./roles/