Browse Source

current

master
parent
commit
52ea6588ba
1 changed files with 13 additions and 1 deletions
  1. +13
    -1
      tasks/main.yml

+ 13
- 1
tasks/main.yml View File

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


Loading…
Cancel
Save