blob: d7717cc718da4b64fe1748e3416db2e2bc67db04 (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
|
infra-ansible
=============
Some common Ansible roles used by me to manage things.
Usage
-----
requirements.yml:
```
collections:
- source: https://github.com/egor-tensin/infra-ansible.git
type: git
version: master # Or a git tag
```
```
$ ansible-galaxy install -r requirements.yml
```
Then you can use roles in your playbook:
```
- name: Test playbook
hosts: all
roles:
- tensin.infra.apt
- tensin.infra.journald
...
```
License
-------
Distributed under the MIT License.
See [LICENSE.txt] for details.
[LICENSE.txt]: LICENSE.txt
|