Explorar el Código

Added list of packages that are installed or purged

merge-requests/1/merge
Christoph Haas hace 10 años
padre
commit
27a32e8d44
Se han modificado 1 ficheros con 23 adiciones y 1 borrados
  1. +23
    -1
      roles/ispmail-packages/tasks/main.yml

+ 23
- 1
roles/ispmail-packages/tasks/main.yml Ver fichero

@@ -1,3 +1,25 @@
---
- debug: msg="Foo"
- name: adding Jessie backports repository (for Roundcube)
apt_repository: repo='deb http://http.debian.net/debian jessie-backports main' state=present
- name: install required binary packages
apt: name={{item}} state=installed
with_items:
- mysql-server
- postfix
- postfix-mysql
- swaks
- dovecot-mysql
- dovecot-pop3d
- dovecot-imapd
- dovecot-managesieved
- roundcube
- roundcube-plugins
- phpmyadmin
- name: purge Exim installation
apt: name={{item}} state=absent purge=yes
with_items:
- exim4
- exim4-base
- exim4-config
- exim4-daemon-light


Cargando…
Cancelar
Guardar