Add dependencies for KRV
This commit is contained in:
parent
99c9ae8848
commit
84c21cd863
7 changed files with 26 additions and 0 deletions
4
roles/pwntools/tasks/main.yml
Normal file
4
roles/pwntools/tasks/main.yml
Normal 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'
|
5
roles/pwntools/tasks/main_lin.yml
Normal file
5
roles/pwntools/tasks/main_lin.yml
Normal file
|
@ -0,0 +1,5 @@
|
|||
- name: Install python-pwntools
|
||||
apt:
|
||||
name:
|
||||
- python3-pwntools
|
||||
state: latest
|
2
roles/pwntools/tasks/main_win.yml
Normal file
2
roles/pwntools/tasks/main_win.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
- name: Install python3-pwntools
|
||||
win_command: pip install pwntools
|
Loading…
Add table
Add a link
Reference in a new issue