feature/forwarders-port-tls-support #3

Merged
daniel merged 12 commits from feature/forwarders-port-tls-support into main 2026-01-28 22:29:11 +00:00
4 changed files with 6 additions and 6 deletions
Showing only changes of commit 4cb9cb3e3f - Show all commits

View File

@@ -1,7 +1,7 @@
--- ---
name: Test name: Test
on: on: # noqa: yaml[truthy]
push: push:
branches: branches:
- main - main

View File

@@ -4,7 +4,7 @@
tasks: tasks:
- name: Include bind9 role - name: Include bind9 role
ansible.builtin.include_role: ansible.builtin.include_role:
name: ../../../ansible-bind9-role name: ../../../ansible-bind9-role # noqa: role-name[path]
vars: vars:
bind9_host_config: bind9_host_config:
- name: named.conf.options - name: named.conf.options

View File

@@ -22,6 +22,9 @@
tags: tags:
- bind9 - bind9
- template - template
notify:
- Backup bind config
- Restart bind
block: block:
- name: Create backup of current config - name: Create backup of current config
ansible.builtin.copy: ansible.builtin.copy:
@@ -82,9 +85,6 @@
loop_control: loop_control:
label: "{{ item.name }}" label: "{{ item.name }}"
when: bind9_backup_config | bool is false when: bind9_backup_config | bool is false
notify:
- Backup bind config
- Restart bind
- name: Ensure the named service is started - name: Ensure the named service is started
ansible.builtin.service: ansible.builtin.service:

View File

@@ -2,4 +2,4 @@
- hosts: localhost - hosts: localhost
remote_user: root remote_user: root
roles: roles:
- bind9 - bind9 # noqa: syntax-check[specific]