You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 line
699 B

  1. ---
  2. - name: install required binary packages
  3. apt:
  4. name: "{{ packages }}"
  5. update_cache: yes
  6. vars:
  7. packages:
  8. - mariadb-server
  9. - postfix
  10. - postfix-mysql
  11. - roundcube
  12. - roundcube-mysql
  13. - roundcube-plugins
  14. - roundcube-plugins-extra
  15. - swaks
  16. - dovecot-mysql
  17. - dovecot-pop3d
  18. - dovecot-imapd
  19. - dovecot-lmtpd
  20. - dovecot-managesieved
  21. - adminer
  22. - rspamd
  23. # TODO: shorewall
  24. # - name: purge Exim installation
  25. # apt: name={{item}} state=absent purge=yes
  26. # with_items:
  27. # - exim4
  28. # - exim4-base
  29. # - exim4-config
  30. # - exim4-daemon-light
  31. # - name: make sure mysql-server is started
  32. # service: name=mysql enabled=yes state=started