summaryrefslogtreecommitdiff
path: root/bin/ansible-galaxy
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2015-02-10 08:44:45 -0500
committerMonty Taylor <mordred@inaugust.com>2015-02-10 08:44:45 -0500
commit38e81083cd76d9b15ed3f3cb5ee04291b5c2346a (patch)
tree1af85c2918443e29f1a8689e8d2b8945a177776b /bin/ansible-galaxy
parent7c86db31876b9299016e139dd98dc524139e3e25 (diff)
downloadansible-38e81083cd76d9b15ed3f3cb5ee04291b5c2346a.tar.gz
Add issue_tracker_url to the galaxy template
There is an optional issue_tracker_url setting that can be set in meta/main.yml:galaxy_info. Include it in the generated template commented out so that it can be filled out if desired.
Diffstat (limited to 'bin/ansible-galaxy')
-rwxr-xr-xbin/ansible-galaxy4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy
index 00bb8d12dd..45dc8564f8 100755
--- a/bin/ansible-galaxy
+++ b/bin/ansible-galaxy
@@ -48,6 +48,9 @@ galaxy_info:
author: {{ author }}
description: {{description}}
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:
# - BSD (default)
# - MIT
@@ -656,6 +659,7 @@ def execute_init(args, options, parser):
author = 'your name',
company = 'your company (optional)',
license = 'license (GPLv2, CC-BY, etc)',
+ issue_tracker_url = 'http://example.com/issue/tracker',
min_ansible_version = '1.2',
platforms = platform_groups,
categories = categories,