mirror of https://dev.ccchb.de/ccchb/ansible.git
Fix hasty typos
This commit is contained in:
parent
6c41934194
commit
ca8217859d
|
@ -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) }}'
|
||||||
|
|
Loading…
Reference in New Issue