소스 검색

current state from 2015-11-29

master
Markus Brecchtel 8 년 전
커밋
c37cba980b
2개의 변경된 파일21개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      .gitignore
  2. +20
    -0
      tasks/main.yml

+ 1
- 0
.gitignore 파일 보기

@@ -0,0 +1 @@
*~

+ 20
- 0
tasks/main.yml 파일 보기

@@ -0,0 +1,20 @@
---

- name: filesystems
filesystem:
fstype: "{{ item.fstype }}"
dev: "{{ item.device }}"
force: yes
with_items: "{{ filesystems }}"

- name: mount filesystems
mount:
name: "{{ mount_directory_target }}/{{ item.mount_point }}"
src: "{{ item.device }}"
fstype: "{{ item.fstype }}"
state: mounted
with_items: "{{ filesystems }}"

- name: sync
command: sync

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