diff options
Diffstat (limited to '')
-rw-r--r-- | README.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..2ffef23 --- /dev/null +++ b/README.md @@ -0,0 +1,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 commit hash +``` + +``` +$ 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 |