Fix hasty typos

This commit is contained in:
Fritz Grimpen 2024-09-17 19:18:39 +02:00
parent 6c41934194
commit ca8217859d
1 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@
name: sendmail name: sendmail
state: stopped state: stopped
- ansible.core.name: Disable sendmail periodic tasks - name: Disable sendmail periodic tasks
ansible.builtin.lineinfile: ansible.builtin.lineinfile:
path: /etc/periodic.conf path: /etc/periodic.conf
owner: root owner: root
@ -44,7 +44,7 @@
with_items: '{{ sendmail_periodic }}' with_items: '{{ sendmail_periodic }}'
- name: Add /var/log/postfix to fstab - name: Add /var/log/postfix to fstab
ansible.builtin.mount: ansible.posix.mount:
path: /var/log/postfix path: /var/log/postfix
src: tmpfs src: tmpfs
fstype: tmpfs fstype: tmpfs
@ -99,7 +99,7 @@
- Reload Postfix - Reload Postfix
- name: Configure Postfix - name: Configure Postfix
ansible.corepostconf: postconf:
name: '{{ item.name }}' name: '{{ item.name }}'
value: '{{ item.value | default(omit) }}' value: '{{ item.value | default(omit) }}'
state: '{{ item.state | default(omit) }}' state: '{{ item.state | default(omit) }}'