10 lines
189 B
YAML
10 lines
189 B
YAML
---
|
|
- name: Unmount Plex media directory
|
|
hosts: all
|
|
become: yes
|
|
|
|
tasks:
|
|
- name: Unmount /media/plex
|
|
ansible.builtin.mount:
|
|
path: /media/plex
|
|
state: unmounted |