classroom/roles/pwndbg/tasks/main_lin.yml
2026-04-09 10:50:03 +02:00

25 lines
455 B
YAML

- name: Install dependencies
apt:
name:
- git
- name: Download pwndbg
command:
cmd: git clone https://github.com/pwndbg/pwndbg
creates: /opt/pwndbg
chdir: /opt
- name: Pull latest pwndbg
command:
cmd: git pull
chdir: /opt/pwndbg
- name: Install pwndbg
command:
cmd: ./setup.sh
chdir: /opt/pwndbg
- name: Update folder permissions (to allow lock files)
file:
mode: '0777'
path: /opt/pwndbg/.venv