No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

mount.yaml 570 B

hace 4 años
hace 3 años
123456789101112131415161718192021
  1. ---
  2. - name: Mount pseudo filesystems
  3. connection: local
  4. shell: |
  5. ROOTFS_DIR={{ lookup('env', 'ANSIBLE_ROOTFS_DIR') }}
  6. if grep -q "$(realpath "${ROOTFS_DIR}"/proc)"; then
  7. mount -t proc proc "${ROOTFS_DIR}/proc"
  8. fi
  9. if grep -q "$(realpath "${ROOTFS_DIR}"/dev)"; then
  10. mount --bind /dev "${ROOTFS_DIR}/dev"
  11. fi
  12. if grep -q "$(realpath "${ROOTFS_DIR}"/dev/pts)"; then
  13. mount --bind /dev/pts "${ROOTFS_DIR}/dev/pts"
  14. fi
  15. if grep -q "$(realpath "${ROOTFS_DIR}"/sys)"; then
  16. mount --bind /sys "${ROOTFS_DIR}/sys"
  17. fi