Skip to content

Commit

Permalink
Install systemd-coredump on debian based distros
Browse files Browse the repository at this point in the history
When enable_core_dumps is true.
  • Loading branch information
mw2q committed Nov 1, 2023
1 parent 52b8223 commit 35fb173
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions roles/manage_operating_system/tasks/enable_core_dump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,10 @@
state: present
when: ansible_os_family == 'RedHat'
become: true

- name: Install systemd-coredump
ansible.builtin.package:
name: systemd-coredump
state: present
when: ansible_os_family == 'Debian'
become: true

0 comments on commit 35fb173

Please sign in to comment.