Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions roles/install_storpool_components/tasks/post_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@
when:
- ansible_os_family == "Debian"

- name: Increasing crashkernel size (EL)
become: true
ansible.builtin.lineinfile:
path: /etc/default/grub
regexp: crashkernel=.*
line: GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT crashkernel=1024M"
notify:
- Update GRUB configuration
- Reboot host
when:
- ansible_os_family == "RedHat"

- name: Waiting for memory tests to complete
become: true
async_status:
Expand Down