123456789101112131415161718 |
- - name: restart postfix
- service: name=postfix state=restarted
-
- - name: restart dovecot
- service: name=dovecot state=restarted
-
- - name: restart solr
- service: name=tomcat8 state=restarted
-
- - name: import sql postfix
- action: shell PGPASSWORD='{{ mail_db_password }}' psql -h localhost -d {{ mail_db_database }} -U {{ mail_db_username }} -f /etc/postfix/import.sql --set ON_ERROR_STOP=1
- notify: restart postfix
-
- - name: restart rspamd
- service: name=rspamd state=restarted
-
- - name: restart apache
- service: name=apache2 state=restarted
|