소스 검색

Mount

next_step
Luigi Cruz 3 년 전
부모
커밋
47af9b546e
1개의 변경된 파일4개의 추가작업 그리고 16개의 파일을 삭제
  1. +4
    -16
      ansible/tasks/mount.yaml

+ 4
- 16
ansible/tasks/mount.yaml 파일 보기

@@ -3,19 +3,7 @@
connection: local
shell: |
ROOTFS_DIR={{ lookup('env', 'ANSIBLE_ROOTFS_DIR') }}

if grep -q "$(realpath "${ROOTFS_DIR}"/proc)"; then
mount -t proc proc "${ROOTFS_DIR}/proc"
fi

if grep -q "$(realpath "${ROOTFS_DIR}"/dev)"; then
mount --bind /dev "${ROOTFS_DIR}/dev"
fi
if grep -q "$(realpath "${ROOTFS_DIR}"/dev/pts)"; then
mount --bind /dev/pts "${ROOTFS_DIR}/dev/pts"
fi

if grep -q "$(realpath "${ROOTFS_DIR}"/sys)"; then
mount --bind /sys "${ROOTFS_DIR}/sys"
fi
mount -t proc proc "${ROOTFS_DIR}/proc"
mount --bind /dev "${ROOTFS_DIR}/dev"
mount --bind /dev/pts "${ROOTFS_DIR}/dev/pts"
mount --bind /sys "${ROOTFS_DIR}/sys"

불러오는 중...
취소
저장