Add dependencies for KRV

This commit is contained in:
Gašper Fele-Žorž 2025-09-12 15:30:50 +02:00
parent 99c9ae8848
commit 84c21cd863
7 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,4 @@
- import_tasks: main_win.yml
when: ansible_os_family == 'Windows'
- import_tasks: main_lin.yml
when: ansible_os_family == 'Debian'

View file

@ -0,0 +1,5 @@
- name: Install python-pwntools
apt:
name:
- python3-pwntools
state: latest

View file

@ -0,0 +1,2 @@
- name: Install python3-pwntools
win_command: pip install pwntools