Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions misc/ansigenome/templates/DebOps-README.md.j2
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{% extends "README.md.j2" %}

{% block title %}
## [![DebOps project](http://debops.org/images/debops-small.png)](http://debops.org) {{ role.name }}
## [![DebOps project](https://debops.org/images/debops-small.png)](https://debops.org) {{ role.name }}
{% endblock %}

{% block badges %}
{% if ansigenome_info.travis|d() %}
[![Travis CI](http://img.shields.io/travis/{{ scm.user + '/' + role.slug }}.svg?style=flat)](http://travis-ci.org/{{ scm.user + '/' + role.slug }})
[![test-suite](http://img.shields.io/badge/test--suite-{{ scm.repo_prefix | replace("-","--") | replace("_","__") + role.name | replace("-","--") | replace("_","__") }}-blue.svg?style=flat)](https://github.com/{{ scm.user }}/test-suite/tree/master/{{ scm.repo_prefix + role.name }}/)
[![Travis CI](https://img.shields.io/travis/{{ scm.user + '/' + role.slug }}.svg?style=flat)](https://travis-ci.org/{{ scm.user + '/' + role.slug }})
[![test-suite](https://img.shields.io/badge/test--suite-{{ scm.repo_prefix | replace("-","--") | replace("_","__") + role.name | replace("-","--") | replace("_","__") }}-blue.svg?style=flat)](https://github.com/{{ scm.user }}/test-suite/tree/master/{{ scm.repo_prefix + role.name }}/)
{% endif %}
{% if ansigenome_info.galaxy_url|d() %}
[![Ansible Galaxy](http://img.shields.io/badge/galaxy-{{ role.galaxy_name | replace('-', '--')}}-660198.svg?style=flat)]({{ ansigenome_info.galaxy_url }})
[![Ansible Galaxy](https://img.shields.io/badge/galaxy-{{ role.galaxy_name | replace('-', '--')}}-660198.svg?style=flat)]({{ ansigenome_info.galaxy_url }})
{% endif %}
{%- endblock %}

Expand All @@ -26,7 +26,7 @@ ansible-galaxy install {{ role.galaxy_name }}
### Documentation

More information about `{{ role.galaxy_name }}` can be found in the
[official {{ role.galaxy_name }} documentation](http://docs.debops.org/en/latest/ansible/roles/{{ role.slug }}/docs/).
[official {{ role.galaxy_name }} documentation](https://docs.debops.org/en/latest/ansible/roles/{{ role.slug }}/docs/).

{% endblock %}
{% block standalone %}
Expand All @@ -37,7 +37,7 @@ You may need to include missing roles from the [DebOps common
playbook](https://github.com/debops/debops-playbooks/blob/master/playbooks/common.yml)
into your playbook.

[Try DebOps now](https://github.com/debops/debops) for a complete solution to run your Debian-based infrastructure.
[Try DebOps now](https://debops.org/) for a complete solution to run your Debian-based infrastructure.

{% endblock %}
{% block defaults %}
Expand All @@ -49,5 +49,5 @@ into your playbook.
{% block footer %}
***

This role is part of the [DebOps](http://debops.org/) project. README generated by [ansigenome](https://github.com/nickjj/ansigenome/).
This role is part of the [DebOps](https://debops.org/) project. README generated by [ansigenome](https://github.com/nickjj/ansigenome/).
{% endblock %}
4 changes: 1 addition & 3 deletions misc/ansigenome/templates/README.md.j2
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,8 @@ List of internal variables used by the role:
{% block authors %}
### Authors and license

`{{ role.name }}` role was written by:

{% for credit in authors %}
- {{ "[" if credit.url|d() else "" }}{{ credit.name }}{{ "](" + credit.url + ")" if credit.url|d() else "" }}{% if credit.email|d() %} | [e-mail](mailto:{{ credit.email }}){% endif %}{% if credit.twitter|d() %} | [Twitter](https://twitter.com/{{ credit.twitter }}){% endif %}{% if credit.github|d() %} | [GitHub](https://github.com/{{ credit.github }}){% endif %}
- {{ "[" if credit.url|d() else "" }}{{ credit.name }}{{ "](" + credit.url + ")" if credit.url|d() else "" }}{{ " (maintainer)" if (credit.maintainer|d()) else "" }}{% if credit.email|d() %} | [e-mail](mailto:{{ credit.email }}){% endif %}{% if credit.twitter|d() %} | [Twitter](https://twitter.com/{{ credit.twitter }}){% endif %}{% if credit.github|d() %} | [GitHub](https://github.com/{{ credit.github }}){% endif %}

{% endfor %}

Expand Down