2024-04-15 14:39:29 +00:00
|
|
|
---
|
2024-08-19 14:06:16 +00:00
|
|
|
- name: Delete swap file
|
|
|
|
ansible.builtin.include_tasks: delete.yml
|
|
|
|
when: not (swap_enabled | bool) or (swap_size | int > (ansible_swaptotal_mb | int) + 1)
|
2024-04-15 14:39:29 +00:00
|
|
|
|
2024-08-19 14:06:16 +00:00
|
|
|
- name: Create swap file
|
|
|
|
ansible.builtin.include_tasks: create.yml
|
|
|
|
when: swap_enabled | bool
|