style: linting

This commit is contained in:
VC
2024-07-05 11:53:13 +02:00
parent 66830fd2eb
commit 1f28d2242f
76 changed files with 469 additions and 335 deletions

View File

@@ -1,4 +1,6 @@
---
- name: restart opendkim
service:
name: opendkim
state: restarted
name: opendkim
state: restarted

View File

@@ -1,32 +1,33 @@
---
- name: install opendkim
package:
name: "{{ item }}"
state: present
name: "{{ item }}"
state: present
loop:
- opendkim
- opendkim-tools
- opendkim
- opendkim-tools
- name: main configuration files
template:
src: opendkim.conf
dest: /etc/opendkim.conf
src: opendkim.conf
dest: /etc/opendkim.conf
notify:
- restart opendkim
- restart opendkim
- name: dkim directory
file:
path: /etc/dkim
state: directory
path: /etc/dkim
state: directory
- name: secondary configuration files
copy:
src: "./files/dkim/{{ item }}"
dest: "/etc/dkim/{{ item }}"
src: "./files/dkim/{{ item }}"
dest: "/etc/dkim/{{ item }}"
loop:
- KeyTable
- PeerList
- SigningTable
- TrustedHosts
- KeyTable
- PeerList
- SigningTable
- TrustedHosts
notify:
- restart opendkim
- restart opendkim