Update to more recent Ansible roles

This commit is contained in:
2020-11-25 11:38:20 +00:00
parent 96182bb06a
commit 59d482cad7
47 changed files with 2970 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
---
- name: Copy postfix configuration template
- name: Copy configuration template
template: src=files/postfix/main.cf dest=/etc/postfix/main.cf
- name: Copy postfix sasl_passwd

View File

@@ -1,4 +1,4 @@
---
- name: Install packages
apt: name="{{ item }}" state=latest
package: name="{{ item }}" state=present
with_items: "{{ packages }}"

View File

@@ -1,3 +1,3 @@
---
- name: Start and enable postfix service
- name: Start and enable services
service: name=postfix state=restarted enabled=yes