cleanup roles
This commit is contained in:
parent
2153438ec5
commit
43f1633a22
@ -4,7 +4,7 @@
|
||||
apt: name=apt-transport-https
|
||||
|
||||
- name: Enable gogs apt-key
|
||||
apt_key: url='https://dl.packager.io/srv/pkgr/gogs/key'
|
||||
apt_key: url="https://dl.packager.io/srv/pkgr/gogs/key"
|
||||
|
||||
- name: Enable gogs repository
|
||||
apt_repository: repo="deb https://dl.packager.io/srv/deb/pkgr/gogs/pkgr/debian 9 main"
|
||||
|
@ -7,10 +7,10 @@
|
||||
apt: name=apt-transport-https
|
||||
|
||||
- name: Enable nodesource apt-key
|
||||
apt_key: url='https://deb.nodesource.com/gpgkey/nodesource.gpg.key'
|
||||
apt_key: url="https://deb.nodesource.com/gpgkey/nodesource.gpg.key"
|
||||
|
||||
- name: Enable nodesource repository
|
||||
apt_repository: repo='deb https://deb.nodesource.com/node_8.x stretch main'
|
||||
apt_repository: repo="deb https://deb.nodesource.com/node_8.x/ {{ ansible_distribution_release }} main"
|
||||
|
||||
- name: Install packages
|
||||
apt: name={{ item }}
|
||||
|
@ -1,18 +1,14 @@
|
||||
---
|
||||
|
||||
- name: add an apt rspamd key
|
||||
apt_key:
|
||||
url: https://rspamd.com/apt-stable/gpg.key
|
||||
state: present
|
||||
apt_key: url="https://rspamd.com/apt-stable/gpg.key"
|
||||
|
||||
- name: add rspamd repository
|
||||
apt_repository:
|
||||
repo: deb http://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main
|
||||
state: present
|
||||
apt_repository: repo="deb http://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
|
||||
|
||||
- name: Install packages
|
||||
apt: name={{ item }}
|
||||
with_items:
|
||||
- amavisd-new
|
||||
- bsd-mailx
|
||||
- dovecot-core
|
||||
- dovecot-imapd
|
||||
@ -45,7 +41,7 @@
|
||||
- name: Create vmail sieve-bin directory
|
||||
file: path=/var/vmail/.sieve/bin state=directory mode=0750 owner=vmail group=vmail
|
||||
|
||||
- name: Copy redis config
|
||||
- name: Configure redis
|
||||
copy: src=redis.conf dest=/etc/redis/redis.conf
|
||||
notify: Restart redis
|
||||
|
||||
@ -57,10 +53,10 @@
|
||||
- name: Render rspamd config templates
|
||||
template: src=rspamd/local.d/{{ item }}.j2 dest=/etc/rspamd/local.d/{{ item }}
|
||||
notify: Restart rspamd
|
||||
loop:
|
||||
- "options.inc"
|
||||
- "arc.conf"
|
||||
- "dkim_signing.conf"
|
||||
with_items:
|
||||
- options.inc
|
||||
- arc.conf
|
||||
- dkim_signing.conf
|
||||
|
||||
- name: Copy spam learn/unlearn sieve and shell scripts
|
||||
copy: src=dovecot/{{ item }} dest=/var/vmail/.sieve/{{ item }}
|
||||
@ -164,20 +160,15 @@
|
||||
|
||||
- name: Start dovecot
|
||||
service: name=dovecot state=started enabled=yes
|
||||
tags: mail
|
||||
|
||||
- name: Start fcgiwrap
|
||||
service: name=fcgiwrap state=started enabled=yes
|
||||
tags: mail
|
||||
|
||||
- name: Start postfix
|
||||
service: name=postfix state=started enabled=yes
|
||||
tags: mail
|
||||
|
||||
- name: Start redis
|
||||
service: name=rspamd state=started enabled=yes
|
||||
tags: mail
|
||||
|
||||
- name: Start rspamd
|
||||
service: name=rspamd state=started enabled=yes
|
||||
tags: mail
|
||||
|
@ -4,7 +4,7 @@
|
||||
apt: name=apt-transport-https
|
||||
|
||||
- name: Enable sury php apt-key
|
||||
apt_key: url='https://packages.sury.org/php/apt.gpg'
|
||||
apt_key: url="https://packages.sury.org/php/apt.gpg"
|
||||
|
||||
- name: Enable sury php repository
|
||||
apt_repository: repo="deb https://packages.sury.org/php/ stretch main"
|
||||
|
Loading…
Reference in New Issue
Block a user