Merge pull request #116 from stafwag/master

Reorganize the filesystem umount order.
This commit is contained in:
Julien DOCHE
2021-02-14 22:18:01 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -33,8 +33,8 @@
- "{{ systemd_dir }}/k3s.service"
- "{{ systemd_dir }}/k3s-node.service"
- /etc/rancher/k3s
- /var/lib/rancher/k3s
- /var/lib/kubelet
- /var/lib/rancher/k3s
- /usr/local/bin/k3s
- name: daemon_reload

View File

@@ -12,4 +12,4 @@
path: "{{ item }}"
state: unmounted
with_items:
"{{ get_mounted_filesystems.stdout_lines }}"
"{{ get_mounted_filesystems.stdout_lines | reverse | list }}"