From fae8f61df790bb2b4d9e86a38490c47004d7fa22 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sat, 21 Mar 2026 14:39:56 -0400 Subject: [PATCH] Add mount-all.yml --- mount-all.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mount-all.yml diff --git a/mount-all.yml b/mount-all.yml new file mode 100644 index 0000000..a81ba96 --- /dev/null +++ b/mount-all.yml @@ -0,0 +1,8 @@ +--- +- name: Mount all filesystems from fstab + hosts: all + become: yes + + tasks: + - name: Run mount -a + ansible.builtin.command: mount -a \ No newline at end of file