| 12345678910111213141516171819202122232425262728293031323334 |
- ---
- # Sample Roles file
- # with examples from Ansible Documentation:
- # # from galaxy
- # - src: yatesr.timezone
- #
- # # from GitHub
- # - src: https://github.com/bennojoy/nginx
- #
- # # from GitHub, overriding the name and specifying a specific tag
- # - src: https://github.com/bennojoy/nginx
- # version: master
- # name: nginx_role
- #
- # # from a webserver, where the role is packaged in a tar.gz
- # - src: https://some.webserver.example.com/files/master.tar.gz
- # name: http-role
- #
- # # from Bitbucket
- # - src: git+https://bitbucket.org/willthames/git-ansible-galaxy
- # version: v1.4
- #
- # # from Bitbucket, alternative syntax and caveats
- # - src: https://bitbucket.org/willthames/hg-ansible-galaxy
- # scm: hg
- #
- # # from GitLab or other git-based scm, using git+ssh
- # - src: git@gitlab.company.com:mygroup/ansible-base.git
- # scm: git
- # version: "0.1" # quoted, so YAML doesn't parse this as a floating-point value
- #
|