-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.yml
26 lines (22 loc) · 1.03 KB
/
setup.yml
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
26
---
# Copyright (c) 2022 Jakob Meng, <[email protected]>
# vim:set fileformat=unix tabstop=2 shiftwidth=2 expandtab:
# kate: end-of-line unix; space-indent on; indent-width 2; remove-trailing-spaces modified;
- name: Satisfy software requirements of required Ansible collections
hosts: all
any_errors_fatal: true
become: true
gather_facts: true
roles:
- name: Satisfy software requirements of Ansible collection jm1.pkg
# Ref.: https://github.com/JM1/ansible-collection-jm1-pkg/blob/master/roles/setup/README.md
role: jm1.pkg.setup
tags: ["jm1.pkg.setup"]
- name: Satisfy software requirements of Ansible collection jm1.libvirt
# Ref.: https://github.com/JM1/ansible-collection-jm1-libvirt/blob/master/roles/setup/README.md
role: jm1.libvirt.setup
tags: ["jm1.libvirt.setup"]
- name: Satisfy software requirements of Ansible collection jm1.openstack
# Ref.: https://github.com/JM1/ansible-collection-jm1-openstack/blob/master/roles/setup/README.md
role: jm1.openstack.setup
tags: ["jm1.openstack.setup"]