blob: 571e0f1de82b22d3644642ec6053685056bc645a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
- name: create lxc
hosts: lxc
gather_facts: false
tags: create_lxc
roles:
- proxmox_create_lxc
- name: complete provision
hosts: all
tags: puppet
roles:
- apply_puppet
- name: join ipa
hosts: join_ipa
tags: join_ipa
roles:
- join_ipa
- name: verify root mail
hosts: all
tags: verify_root_mail
roles:
- verify_root_mail
|