Compare commits

14 Commits

Author SHA1 Message Date
827e96463f fix(templating): adapt lstrip_blocks
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 56s
Lint Markdown files / markdown-lint (push) Successful in 9s
2025-08-10 18:32:38 +02:00
f3cbc1d81b fix(ansible-galaxy): adapt indentation
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 11s
Ansible Linter / ansible-lint (push) Successful in 55s
2025-08-06 16:10:21 +02:00
b50fd28d22 fix(ansible-galaxy): add namespace
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 12s
Ansible Linter / ansible-lint (push) Failing after 55s
2025-08-06 15:22:23 +02:00
63ff0433ff fix(ansible-galaxy): adapt list of supported platforms
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 10s
Ansible Linter / ansible-lint (push) Failing after 48s
2025-08-06 11:44:48 +02:00
5939225733 fix(ansible-galaxy): remove namespace
Some checks failed
Lint Markdown files / markdown-lint (push) Successful in 10s
Ansible Linter / ansible-lint (push) Failing after 30s
2025-08-06 11:32:02 +02:00
974a128275 Merge pull request 'chore(deps): update ansible/ansible-lint action to v25.7.0' (#23) from renovate/actions into master
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 16s
Ansible Linter / ansible-lint (push) Successful in 42s
2025-07-29 22:02:40 +00:00
35e10931a4 chore(deps): update ansible/ansible-lint action to v25.7.0
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 12s
Ansible Linter / ansible-lint (push) Successful in 1m31s
Ansible Linter / ansible-lint (pull_request) Successful in 1m14s
Lint Markdown files / markdown-lint (pull_request) Successful in 11s
2025-07-29 22:00:44 +00:00
670820009c chore(deps): update ansible/ansible-lint action to v25.6.1
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 16s
Ansible Linter / ansible-lint (pull_request) Successful in 1m16s
Lint Markdown files / markdown-lint (push) Successful in 16s
Ansible Linter / ansible-lint (push) Successful in 15s
2025-06-19 10:00:23 +00:00
d38b75dae5 chore(deps): update ansible/ansible-lint action to v25.6.0
All checks were successful
Lint Markdown files / markdown-lint (pull_request) Successful in 12s
Ansible Linter / ansible-lint (pull_request) Successful in 1m22s
Lint Markdown files / markdown-lint (push) Successful in 13s
Ansible Linter / ansible-lint (push) Successful in 53s
2025-06-17 19:00:24 +00:00
73f0d2b6bf chore(deps): update ansible/ansible-lint action to v25.5.0
All checks were successful
Ansible Linter / ansible-lint (pull_request) Successful in 15s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Lint Markdown files / markdown-lint (push) Successful in 4s
Ansible Linter / ansible-lint (push) Successful in 45s
2025-05-31 12:04:40 +00:00
9321ee64a5 chore(ci): adapt workflow to lint markdown files
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 5s
Ansible Linter / ansible-lint (push) Successful in 1m3s
2025-05-31 13:35:27 +02:00
4117cbda9a chore(ci): use DavidAnson/markdownlint-cli2-action
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 14s
2025-05-13 21:20:02 +02:00
0e6ad65746 chore(deps): update ansible/ansible-lint action to v25.4.0
All checks were successful
Ansible Linter / ansible-lint (pull_request) Successful in 1m10s
Lint Markdown files / markdown-lint (pull_request) Successful in 10s
Lint Markdown files / markdown-lint (push) Successful in 7s
Ansible Linter / ansible-lint (push) Successful in 53s
2025-04-28 13:00:32 +00:00
36d8257cd2 style: use quotation marks for the name of an action
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 1m27s
Lint Markdown files / markdown-lint (push) Successful in 12s
2025-04-18 11:53:13 +02:00
5 changed files with 22 additions and 22 deletions

View File

@ -14,7 +14,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Run ansible-lint - name: Run ansible-lint
uses: ansible/ansible-lint@v25.2.1 uses: ansible/ansible-lint@v25.7.0
with: with:
args: "--config-file .ansible-lint" args: "--config-file .ansible-lint"
setup_python: "true" setup_python: "true"

View File

@ -9,11 +9,10 @@ on:
jobs: jobs:
markdown-lint: markdown-lint:
container:
image: git.cryptic.systems/volker.raschek/markdownlint:0.44.0
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v4.2.2
- name: Lint Markdown files - uses: DavidAnson/markdownlint-cli2-action@v20.0.0
run: markdownlint --config .markdownlint.yaml . with:
globs: '**/*.md'

View File

@ -1,7 +1,7 @@
--- ---
bind9_acls: bind9_acls:
- name: internalnets - name: "internalnets"
permissions: [] permissions: []
# - "111.222.111.222" # - "111.222.111.222"
@ -117,7 +117,7 @@ bind9_tsigkeys: []
# secret: "secret" # secret: "secret"
bind9_views: [] bind9_views: []
# - name: external # - name: "external"
# match_clients: # match_clients:
# - "!internalnets" # - "!internalnets"
# - "any" # - "any"
@ -135,7 +135,7 @@ bind9_views: []
# type: master # type: master
# notify: true # notify: true
# file: zones/external/db.local.example # file: zones/external/db.local.example
# - name: internal # - name: "internal"
# match_clients: # match_clients:
# - "!192.168.178.1" # - "!192.168.178.1"
# - "internalnets" # - "internalnets"

View File

@ -1,25 +1,26 @@
dependencies: []
galaxy_info: galaxy_info:
namespace: volker_raschek
role_name: bind9
author: Markus Pesch author: Markus Pesch
description: Role to install and configure bind9 on different distributions
company: Cryptic Systems company: Cryptic Systems
description: Role to install and configure bind9 on different distributions
galaxy_tags:
- named
- bind
- dyndns
license: MIT license: MIT
min_ansible_version: "2.9" min_ansible_version: "2.9"
namespace: volker-raschek
platforms: platforms:
- name: ArchLinux - name: ArchLinux
versions: versions:
- all - all
- name: Ubuntu
versions:
- all
- name: EL - name: EL
versions: versions:
- all - all
- name: Fedora
galaxy_tags: versions:
- named - all
- bind - name: Ubuntu
- dyndns versions:
- all
dependencies: [] role_name: bind9

View File

@ -1,4 +1,4 @@
#jinja2: lstrip_blocks: "True (or False)", trim_blocks: "True (or False)" #jinja2: lstrip_blocks: True
# #
# {{ ansible_managed }} # {{ ansible_managed }}
# #