summaryrefslogtreecommitdiff
path: root/roles/gdb/tasks/main.yml
blob: 2cb5d089db2c38b2c31e5159efdadf4497f12c06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- name: Install gdb
  ansible.builtin.package:
    name:
      - gdb
    state: present

- name: Configure gdb for Dmitry Ilvokhin
  ansible.builtin.copy:
    src: misc/dotfiles/gdbinit
    dest: /home/d/.gdbinit
    owner: d
    group: d
    mode: u+rw,g+r,o+r
  tags:
    - dotfiles