From ca8217859da48855179b76453b5f8dc439e08ac3 Mon Sep 17 00:00:00 2001 From: Fritz Grimpen Date: Tue, 17 Sep 2024 19:18:39 +0200 Subject: [PATCH] Fix hasty typos --- roles/postfix/tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/postfix/tasks/main.yml b/roles/postfix/tasks/main.yml index c268cd9..ab11e1b 100644 --- a/roles/postfix/tasks/main.yml +++ b/roles/postfix/tasks/main.yml @@ -33,7 +33,7 @@ name: sendmail state: stopped -- ansible.core.name: Disable sendmail periodic tasks +- name: Disable sendmail periodic tasks ansible.builtin.lineinfile: path: /etc/periodic.conf owner: root @@ -44,7 +44,7 @@ with_items: '{{ sendmail_periodic }}' - name: Add /var/log/postfix to fstab - ansible.builtin.mount: + ansible.posix.mount: path: /var/log/postfix src: tmpfs fstype: tmpfs @@ -99,7 +99,7 @@ - Reload Postfix - name: Configure Postfix - ansible.corepostconf: + postconf: name: '{{ item.name }}' value: '{{ item.value | default(omit) }}' state: '{{ item.state | default(omit) }}'