Initial Commit

This commit is contained in:
2022-04-11 13:04:14 +02:00
commit bb24545287
16 changed files with 430 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#jinja2: lstrip_blocks: "True", trim_blocks: "True"
#
# {{ ansible_managed }}
#
{% for section, values in item.value.config.items() %}
[{{ section }}]
{% for key, value in values.items() %}
{% if value | length > 0 %}
{{ key }} = {{ value }}
{% endif %}
{% endfor %}
{% endfor %}

View File

@ -0,0 +1,7 @@
#
# {{ ansible_managed }}
#
**/*~ # emacs
**/.DS_Store # mac os
**/*.swp # vim swap

View File

@ -0,0 +1,26 @@
# [<optional state> #issueid] <type>: <summary>
# Addition description
# - item
# - item
# - item
# optional states:
# Close #issueid
# Draft #issueid
# WIP #issueid
# types:
# feat (new feature)
# fix (bug fix)
# refactor (refactoring production code)
# style (formatting, missing semicolons, etc; no code change)
# docs (changes to documentation)
# test (adding or refactoring tests; no production code change)
# core (updating grunt tasks etc; no production code change)
# Examples:
# [Close #1] fix: cleanup build folder # Smart-commit for github, gilab, gitea, gogs
# [HATE-1337 /fixed] fix: cleanup build folder # Smart-commit for jira
# style: ident to 2 blanks
# feat: read from apache kafka channel