From 38e81083cd76d9b15ed3f3cb5ee04291b5c2346a Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 10 Feb 2015 08:44:45 -0500 Subject: [PATCH] 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. --- bin/ansible-galaxy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/ansible-galaxy b/bin/ansible-galaxy index 00bb8d12dd5..45dc8564f81 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,