Luigi Cruz 3 anni fa
parent
commit
7c553e6d8b
1 ha cambiato i file con 6 aggiunte e 1 eliminazioni
  1. +6
    -1
      ansible/tasks/umount.yaml

+ 6
- 1
ansible/tasks/umount.yaml Vedi File

@@ -1,4 +1,9 @@
---
- name: Umount pseudo filesystems
connection: local
shell: umount --recursive '{{ lookup('env', 'ANSIBLE_ROOTFS_DIR') }}'
shell: umount --recursive '{{ lookup('env', 'ANSIBLE_ROOTFS_DIR') }}{{ item }}'
with_items:
- /proc
- /dev/pts
- /dev
- /sys

Caricamento…
Annulla
Salva