[TIDY] Update to ansible 4 module names
This commit is contained in:
parent
3c1939f431
commit
a2fc598416
19 changed files with 89 additions and 89 deletions
|
|
@ -4,7 +4,7 @@
|
|||
# Install exim
|
||||
- name: cronmails - Install exim4 as MTA
|
||||
become: yes
|
||||
apt:
|
||||
ansible.builtin.apt:
|
||||
name: "{{ packages }}"
|
||||
state: present
|
||||
vars:
|
||||
|
|
@ -15,28 +15,28 @@
|
|||
# Configure exim
|
||||
- name: cronmails - Create exim4 config folder
|
||||
become: yes
|
||||
file:
|
||||
ansible.builtin.file:
|
||||
path: /etc/exim4
|
||||
state: directory
|
||||
- name: cronmails - Copy exim4 config template
|
||||
become: yes
|
||||
copy:
|
||||
ansible.builtin.copy:
|
||||
src: "{{ role_path }}/files/exim4.conf.template"
|
||||
dest: /etc/exim4/exim4.conf.template
|
||||
register: cronmails_conftmp_update
|
||||
- name: cronmails - Copy exim4 config file
|
||||
become: yes
|
||||
template:
|
||||
ansible.builtin.template:
|
||||
src: "{{ role_path }}/templates/update-exim4.conf.conf"
|
||||
dest: /etc/exim4/update-exim4.conf.conf
|
||||
register: cronmails_conffile_update
|
||||
- name: cronmails - Run update-exim4.conf
|
||||
become: yes
|
||||
shell: "update-exim4.conf"
|
||||
ansible.builtin.shell: "update-exim4.conf"
|
||||
when: cronmails_conftmp_update.changed or cronmails_conffile_update.changed
|
||||
- name: cronmails - Enable and start exim4
|
||||
become: yes
|
||||
service:
|
||||
ansible.builtin.service:
|
||||
name: exim4
|
||||
state: started
|
||||
enabled: yes
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue