8 lines
146 B
YAML
8 lines
146 B
YAML
---
|
|
- name: Mount all filesystems from fstab
|
|
hosts: all
|
|
become: yes
|
|
|
|
tasks:
|
|
- name: Run mount -a
|
|
ansible.builtin.command: mount -a |