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
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) }}'