mirror of
https://github.com/k3s-io/k3s-ansible.git
synced 2025-12-26 00:22:36 +01:00
killall containerd-shim-runc-v2 added
umount k3s filesystems added
This commit is contained in:
13
roles/reset/tasks/umount_with_childeren.yml
Normal file
13
roles/reset/tasks/umount_with_childeren.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
- name: Get the list of mounted filesystems
|
||||
shell: cat /proc/mounts | awk '{ print $2}' | grep -E "^{{ mounted_fs }}"
|
||||
register: get_mounted_filesystems
|
||||
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 }}"
|
||||
Reference in New Issue
Block a user