ansible_cache/home_linux/disable_swap.yml

18 lines
264 B
YAML
Raw Normal View History

---
- name: Disable swap on Raspberries
hosts: all
roles:
- common
become: yes
gather_facts: no
tasks:
- name: Disable swap
ansible.builtin.shell: sudo swapoff -a
- name: Reboot
ansible.builtin.reboot:
test_command: uptime