while-true-do / ansible-skeleton

The skeleton to create new ansible roles.
BSD 3-Clause "New" or "Revised" License
7 stars 0 forks source link

requirements.yml missing #19

Closed dschier-wtd closed 6 years ago

dschier-wtd commented 6 years ago

Type of Report

Bug

Actual behaviour

no requirements.yml present and guideline missing

Expected behaviour

The dist/ should contain an empty requirements.yml with comments.

dschier-wtd commented 6 years ago

Example:

# 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+http://bitbucket.org/willthames/git-ansible-galaxy
  version: v1.4

# from Bitbucket, alternative syntax and caveats
- src: http://bitbucket.org/willthames/hg-ansible-galaxy
  scm: hg

# from GitLab or other git-based scm
- 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
dschier-wtd commented 6 years ago

@Cinux90 interested into doing this change, too?

Cinux90 commented 6 years ago

Sure, why not.