|
@@ -0,0 +1,52 @@
|
|
|
+---
|
|
|
+galaxy_info:
|
|
|
+ author: {{cookiecutter.full_name}}
|
|
|
+ description: {{ cookiecutter.short_description }}
|
|
|
+ company: {{ cookiecutter.company_name }}
|
|
|
+
|
|
|
+ min_ansible_version: {{cookiecutter.min_ansible_version}}
|
|
|
+
|
|
|
+ # If this a Container Enabled role, provide the minimum Ansible Container version.
|
|
|
+ # min_ansible_container_version:
|
|
|
+
|
|
|
+ # Optionally specify the branch Galaxy will use when accessing the GitHub
|
|
|
+ # repo for this role. During role install, if no tags are available,
|
|
|
+ # Galaxy will use this branch. During import Galaxy will access files on
|
|
|
+ # this branch. If Travis integration is configured, only notifications for this
|
|
|
+ # branch will be accepted. Otherwise, in all cases, the repo's default branch
|
|
|
+ # (usually master) will be used.
|
|
|
+ #github_branch:
|
|
|
+
|
|
|
+ #
|
|
|
+ # platforms is a list of platforms, and each platform has a name and a list of versions.
|
|
|
+ #
|
|
|
+ platforms:
|
|
|
+ - name: {{ cookiecutter.target_os }}
|
|
|
+ versions:
|
|
|
+ - all
|
|
|
+ # - 25
|
|
|
+ # - name: SomePlatform
|
|
|
+ # versions:
|
|
|
+ # - all
|
|
|
+ # - 1.0
|
|
|
+ # - 7
|
|
|
+ # - 99.99
|
|
|
+
|
|
|
+ {% if cookiecutter.galaxy_tags == "" %}
|
|
|
+ galaxy_tags: []
|
|
|
+ {% else %}
|
|
|
+ galaxy_tags:
|
|
|
+ {% for tag in cookiecutter.galaxy_tags.split(',') -%}
|
|
|
+ - {{ tag }}
|
|
|
+ {% endfor -%}
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+
|
|
|
+ {% if cookiecutter.dependencies == "" %}
|
|
|
+ dependencies: []
|
|
|
+ {% else %}
|
|
|
+ dependencies:
|
|
|
+ {% for tag in cookiecutter.dependencies.split(',') -%}
|
|
|
+ - {{ tag }}
|
|
|
+ {% endfor -%}
|
|
|
+ {% endif %}
|