mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-26 00:22:36 +01:00
16 lines
437 B
YAML
16 lines
437 B
YAML
---
|
|
- name: Get the list of mounted filesystems
|
|
shell: set -o pipefail && cat /proc/mounts | awk '{ print $2}' | grep -E "^{{ mounted_fs }}"
|
|
register: get_mounted_filesystems
|
|
args:
|
|
executable: /bin/bash
|
|
failed_when: false
|
|
changed_when: get_mounted_filesystems.stdout | length > 0
|
|
|
|
- name: Umount filesystem
|
|
mount:
|
|
path: "{{ item }}"
|
|
state: unmounted
|
|
with_items:
|
|
"{{ get_mounted_filesystems.stdout_lines }}"
|