Ver código fonte

current state from 2015-11-29

master
Markus Brecchtel 8 anos atrás
commit
c37cba980b
2 arquivos alterados com 21 adições e 0 exclusões
  1. +1
    -0
      .gitignore
  2. +20
    -0
      tasks/main.yml

+ 1
- 0
.gitignore Ver arquivo

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

+ 20
- 0
tasks/main.yml Ver arquivo

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

Carregando…
Cancelar
Salvar