add requirements and an init script

This commit is contained in:
Vincent Stuyck 2026-03-15 03:49:05 +01:00
parent ce33e8a689
commit e35c1cbf3c
4 changed files with 15 additions and 3 deletions

4
.gitignore vendored
View File

@ -1,3 +1 @@
# ---> Ansible
*.retry
venv/

8
init.sh Executable file
View File

@ -0,0 +1,8 @@
# initialize venv
python3 -m venv venv
. ./venv/bin/activate
pip install -r requirements.txt
ansible-galaxy collection install -r requirements.yml

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
proxmoxer
requests

4
requirements.yml Normal file
View File

@ -0,0 +1,4 @@
---
collections:
- name: community.proxmox
version: "1.6.0"