mirror of
https://github.com/roles-ansible/ansible_role_rspamd.git
synced 2024-08-16 17:09:51 +02:00
commit
8dcfbcbeea
13 changed files with 32 additions and 114 deletions
18
.github/workflows/ansible-debian-buster.yml
vendored
18
.github/workflows/ansible-debian-buster.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Ansible check debian:buster
|
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: ansible check with debian:buster
|
|
||||||
uses: roles-ansible/check-ansible-debian-buster-action@master
|
|
||||||
with:
|
|
||||||
targets: "./"
|
|
18
.github/workflows/ansible-debian-latest.yml
vendored
18
.github/workflows/ansible-debian-latest.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Ansible check debian:latest
|
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: ansible check with debian:latest
|
|
||||||
uses: roles-ansible/check-ansible-debian-latest-action@master
|
|
||||||
with:
|
|
||||||
targets: "./"
|
|
18
.github/workflows/ansible-debian-sid.yml
vendored
18
.github/workflows/ansible-debian-sid.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Ansible check debian:sid
|
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: ansible check with debian:sid
|
|
||||||
uses: roles-ansible/check-ansible-debian-sid-action@master
|
|
||||||
with:
|
|
||||||
targets: "./"
|
|
18
.github/workflows/ansible-debian-stable.yml
vendored
18
.github/workflows/ansible-debian-stable.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Ansible check debian:stable
|
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: ansible check with debian:stable
|
|
||||||
uses: roles-ansible/check-ansible-debian-stable-action@master
|
|
||||||
with:
|
|
||||||
targets: "./"
|
|
18
.github/workflows/ansible-debian-stretch.yml
vendored
18
.github/workflows/ansible-debian-stretch.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
---
|
|
||||||
name: Ansible check debian:stretch
|
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
|
||||||
on: [push, pull_request]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: ansible check with debian:stretch
|
|
||||||
uses: roles-ansible/check-ansible-debian-stretch-action@master
|
|
||||||
with:
|
|
||||||
targets: "./"
|
|
18
.github/workflows/ansible-linting-check.yml
vendored
18
.github/workflows/ansible-linting-check.yml
vendored
|
@ -2,21 +2,21 @@
|
||||||
name: Ansible Lint check
|
name: Ansible Lint check
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
# yamllint disable-line rule:truthy
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches: '*'
|
||||||
|
pull_request:
|
||||||
|
branches: '*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: 'checkout git repo'
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Lint Ansible Playbook
|
- name: 'Lint Ansible Playbook'
|
||||||
uses: ansible/ansible-lint-action@master
|
uses: ansible/ansible-lint-action@v6
|
||||||
with:
|
with:
|
||||||
targets: "."
|
targets: "."
|
||||||
# [required]
|
|
||||||
# Paths to ansible files (i.e., playbooks, tasks, handlers etc..)
|
|
||||||
args: ""
|
|
||||||
# [optional]
|
|
||||||
|
|
17
.github/workflows/yamllint.yaml
vendored
17
.github/workflows/yamllint.yaml
vendored
|
@ -2,21 +2,22 @@
|
||||||
name: 'Yamllint GitHub Actions'
|
name: 'Yamllint GitHub Actions'
|
||||||
|
|
||||||
# yamllint disable-line rule:truthy
|
# yamllint disable-line rule:truthy
|
||||||
on: [push, pull_request]
|
on:
|
||||||
|
push:
|
||||||
|
branches: '*'
|
||||||
|
pull_request:
|
||||||
|
branches: '*'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
yamllint:
|
yamllint:
|
||||||
name: 'Yamllint'
|
name: 'Yamllint'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: 'Checkout'
|
- name: 'checkout git repo'
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: 'Yamllint'
|
- name: 'Yamllint'
|
||||||
uses: karancode/yamllint-github-action@master
|
uses: karancode/yamllint-github-action@v2.0.0
|
||||||
with:
|
with:
|
||||||
yamllint_file_or_dir: '.'
|
yamllint_file_or_dir: '.'
|
||||||
yamllint_config_filepath: './.yamllint'
|
yamllint_config_filepath: './.yamllint'
|
||||||
yamllint_strict: false
|
|
||||||
yamllint_comment: true
|
|
||||||
# env:
|
|
||||||
# GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }
|
|
||||||
|
|
|
@ -9,6 +9,10 @@ rspamd__redis_server: '127.0.0.1'
|
||||||
rspamd__default_owner: '_rspamd'
|
rspamd__default_owner: '_rspamd'
|
||||||
rspamd__default_group: '_rspamd'
|
rspamd__default_group: '_rspamd'
|
||||||
|
|
||||||
|
# configure options
|
||||||
|
rspamd__configure_redis: true
|
||||||
|
rspamd__configure_dkim: true
|
||||||
|
|
||||||
# rspamd config file path
|
# rspamd config file path
|
||||||
rspamd__multimap_conf_file: 'files/multimap.conf'
|
rspamd__multimap_conf_file: 'files/multimap.conf'
|
||||||
rspamd__whitelist_ip_file: 'files/whitelist_ip.map'
|
rspamd__whitelist_ip_file: 'files/whitelist_ip.map'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
- name: sudo apt update
|
- name: sudo apt update
|
||||||
become: true
|
become: true
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
|
|
||||||
- name: systemctl restart rspamd
|
- name: systemctl restart rspamd
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
notify: systemctl restart rspamd
|
notify: systemctl restart rspamd
|
||||||
rescue:
|
rescue:
|
||||||
- name: you have to install passlib
|
- name: you have to install passlib
|
||||||
fail:
|
ansible.builtin.fail:
|
||||||
msg: 'I caught an error. Maybe you have to install passlib via pip3'
|
msg: 'I caught an error. Maybe you have to install passlib via pip3'
|
||||||
|
|
||||||
- name: Einstellung des logging
|
- name: Einstellung des logging
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
|
|
||||||
- name: rspamd dkim signing
|
- name: rspamd dkim signing
|
||||||
include_tasks: dkim.yml
|
include_tasks: dkim.yml
|
||||||
|
when: rspamd__configure_dkim | bool
|
||||||
|
|
||||||
- name: redis backend
|
- name: redis backend
|
||||||
include_tasks: redis.yml
|
include_tasks: redis.yml
|
||||||
|
when: rspamd__configure_redis | bool
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
- name: update repo-cache for debian/ubuntu
|
- name: update repo-cache for debian/ubuntu
|
||||||
become: true
|
become: true
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
update_cache: true
|
update_cache: true
|
||||||
cache_valid_time: 3600
|
cache_valid_time: 3600
|
||||||
|
|
||||||
- name: install requirements to add new package repos
|
- name: install requirements to add new package repos
|
||||||
become: true
|
become: true
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
name:
|
name:
|
||||||
- lsb-release
|
- lsb-release
|
||||||
- wget
|
- wget
|
||||||
|
@ -40,10 +40,11 @@
|
||||||
notify: sudo apt update
|
notify: sudo apt update
|
||||||
|
|
||||||
- name: run update if something changed
|
- name: run update if something changed
|
||||||
meta: flush_handlers
|
ansible.builtin.meta: flush_handlers
|
||||||
|
|
||||||
- name: install rspamd
|
- name: install rspamd
|
||||||
become: true
|
become: true
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
name: rspamd
|
name: rspamd
|
||||||
state: present
|
state: present
|
||||||
|
notify: systemctl restart rspamd
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
- name: install redis backend
|
- name: install redis backend
|
||||||
become: true
|
become: true
|
||||||
apt:
|
ansible.builtin.apt:
|
||||||
name: redis
|
name: redis
|
||||||
state: present
|
state: present
|
||||||
|
|
Loading…
Reference in a new issue