1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_rspamd.git synced 2024-08-16 17:09:51 +02:00
ansible_role_rspamd/tasks/packages.yml
2022-04-07 23:14:41 +02:00

49 lines
1.1 KiB
YAML

---
- name: update repo-cache for debian/ubuntu
become: true
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
- name: install requirements to add new package repos
become: true
ansible.builtin.apt:
name:
- lsb-release
- wget
- debian-goodies
- apt-dater-host
- apt-transport-https
state: present
- name: add rspam repo key
become: true
ansible.builtin.apt_key:
url: 'https://rspamd.com/apt-stable/gpg.key'
state: present
notify: sudo apt update
- name: add rspamd repo
become: true
ansible.builtin.apt_repository:
repo: "deb https://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
state: present
mode: 0644
notify: sudo apt update
- name: add rspamd srv-repo
become: true
ansible.builtin.apt_repository:
repo: "deb-src https://rspamd.com/apt-stable/ {{ ansible_distribution_release }} main"
state: present
mode: 0644
notify: sudo apt update
- name: run update if something changed
ansible.builtin.meta: flush_handlers
- name: install rspamd
become: true
ansible.builtin.apt:
name: rspamd
state: present