Merge pull request #10198 from emonty/add-tracker-url-setting

Add issue_tracker_url to the galaxy template
This commit is contained in:
James Cammarata 2015-02-10 08:23:26 -06:00
commit 58937a3959

View file

@ -48,6 +48,9 @@ galaxy_info:
author: {{ author }} author: {{ author }}
description: {{description}} description: {{description}}
company: {{ company }} company: {{ company }}
# If the issue tracker for your role is not on github, uncomment the
# next line and provide a value
# issue_tracker_url: {{ issue_tracker_url }}
# Some suggested licenses: # Some suggested licenses:
# - BSD (default) # - BSD (default)
# - MIT # - MIT
@ -656,6 +659,7 @@ def execute_init(args, options, parser):
author = 'your name', author = 'your name',
company = 'your company (optional)', company = 'your company (optional)',
license = 'license (GPLv2, CC-BY, etc)', license = 'license (GPLv2, CC-BY, etc)',
issue_tracker_url = 'http://example.com/issue/tracker',
min_ansible_version = '1.2', min_ansible_version = '1.2',
platforms = platform_groups, platforms = platform_groups,
categories = categories, categories = categories,