You've already forked ansible-role-bind9
Compare commits
1 Commits
0.1.2
...
b8d9c6549a
Author | SHA1 | Date | |
---|---|---|---|
b8d9c6549a
|
@@ -14,7 +14,8 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- name: Run ansible-lint
|
- name: Run ansible-lint
|
||||||
uses: ansible/ansible-lint@v25.8.2
|
uses: ansible/ansible-lint@v25.2.1
|
||||||
with:
|
with:
|
||||||
args: "--config-file .ansible-lint"
|
args: "--config-file .ansible-lint"
|
||||||
setup_python: "true"
|
setup_python: "true"
|
||||||
|
requirements_file: "requirements.yml"
|
@@ -9,10 +9,11 @@ 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.3.0
|
- uses: actions/checkout@v4.2.2
|
||||||
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0
|
- name: Lint Markdown files
|
||||||
with:
|
run: markdownlint --config .markdownlint.yaml .
|
||||||
globs: '**/*.md'
|
|
||||||
|
@@ -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"
|
||||||
|
@@ -1,26 +1,25 @@
|
|||||||
dependencies: []
|
|
||||||
galaxy_info:
|
galaxy_info:
|
||||||
|
namespace: volker_raschek
|
||||||
|
role_name: bind9
|
||||||
author: Markus Pesch
|
author: Markus Pesch
|
||||||
company: Cryptic Systems
|
|
||||||
description: Role to install and configure bind9 on different distributions
|
description: Role to install and configure bind9 on different distributions
|
||||||
galaxy_tags:
|
company: Cryptic Systems
|
||||||
- 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: EL
|
|
||||||
versions:
|
|
||||||
- all
|
|
||||||
- name: Fedora
|
|
||||||
versions:
|
|
||||||
- all
|
|
||||||
- name: Ubuntu
|
- name: Ubuntu
|
||||||
versions:
|
versions:
|
||||||
- all
|
- all
|
||||||
role_name: bind9
|
- name: EL
|
||||||
|
versions:
|
||||||
|
- all
|
||||||
|
|
||||||
|
galaxy_tags:
|
||||||
|
- named
|
||||||
|
- bind
|
||||||
|
- dyndns
|
||||||
|
|
||||||
|
dependencies: []
|
||||||
|
@@ -10,4 +10,4 @@
|
|||||||
- name: "Fail when the last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
|
- name: "Fail when the last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
|
||||||
ansible.builtin.fail:
|
ansible.builtin.fail:
|
||||||
msg: "Last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
|
msg: "Last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
|
||||||
when: _bind9_zone_last_character.stdout | regex_search('.+')
|
failed_when: _bind9_zone_last_character.stdout | regex_search('.+') | default(false)
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
#jinja2: lstrip_blocks: True
|
#jinja2: lstrip_blocks: "True (or False)", trim_blocks: "True (or False)"
|
||||||
#
|
#
|
||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user