From 387d60d162df84653f948267daa640d18735c417 Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sat, 21 Mar 2026 14:35:59 -0400 Subject: [PATCH] Add unmount-plex.yml --- unmount-plex.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 unmount-plex.yml diff --git a/unmount-plex.yml b/unmount-plex.yml new file mode 100644 index 0000000..90f16de --- /dev/null +++ b/unmount-plex.yml @@ -0,0 +1,10 @@ +--- +- name: Unmount Plex media directory + hosts: all + become: yes + + tasks: + - name: Unmount /media/plex + ansible.builtin.mount: + path: /media/plex + state: unmounted \ No newline at end of file