Ver código fonte

umount

next_step
Luigi Cruz 3 anos atrás
pai
commit
7c553e6d8b
1 arquivos alterados com 6 adições e 1 exclusões
  1. +6
    -1
      ansible/tasks/umount.yaml

+ 6
- 1
ansible/tasks/umount.yaml Ver arquivo

@@ -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

Carregando…
Cancelar
Salvar