forked from rc/classroom
19 lines
320 B
YAML
19 lines
320 B
YAML
- name: Install dependencies
|
|
apt:
|
|
name:
|
|
- git
|
|
|
|
- name: Download pwntools
|
|
command:
|
|
cmd: git clone https://github.com/pwndbg/pwndbg
|
|
creates: pwndbg
|
|
|
|
- name: Pull latest pwntools
|
|
command:
|
|
cmd: git pull
|
|
chdir: pwndbg
|
|
|
|
- name: Install pwntools
|
|
command:
|
|
cmd: ./setup.sh
|
|
chdir: pwndbg
|