Explorar el Código

current

master
padre
commit
52ea6588ba
Se han modificado 1 ficheros con 13 adiciones y 1 borrados
  1. +13
    -1
      tasks/main.yml

+ 13
- 1
tasks/main.yml Ver fichero

@@ -1,8 +1,20 @@
---

- setup:
gather_subset: "!all"

- name: debian apt install packages
apt:
pkg: "{{ item }}"
state: installed
with_items:
- lvm2
when: ansible_os_family == "Debian"

- name: volume groups
lvg:
vg: "{{ item.name }}"
pvs: "{{ item.devices | join(',') }}"
state: present
state: "{{ volume_groups_state }}"
with_items: "{{ volume_groups }}"


Cargando…
Cancelar
Guardar