소스 검색

current

master
부모
커밋
52ea6588ba
1개의 변경된 파일13개의 추가작업 그리고 1개의 파일을 삭제
  1. +13
    -1
      tasks/main.yml

+ 13
- 1
tasks/main.yml 파일 보기

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


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