add post tasks
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-08-25 20:54:37 +02:00
parent 830f219903
commit 3287e55911
2 changed files with 11 additions and 0 deletions

View File

@ -20,3 +20,5 @@
- "config_default.yml"
paths:
- "tasks"
- include_tasks: post_tasks.yml

9
tasks/post_tasks.yml Normal file
View File

@ -0,0 +1,9 @@
---
- name: Ensure postfix service is up and running
systemd:
name: "postfix"
state: started
daemon_reload: yes
enabled: yes
become: True
become_user: root