]> freie-schul-it.de Git - fsit-smgt.git/blob - library/sympa.yml
weitere playbooks umbenannt
[fsit-smgt.git] / library / sympa.yml
1 ---
2 - name: install server specific packages
3 ansible.builtin.apt:
4 update_cache: yes
5 pkg:
6 - sympa
7 - name: edit config file
8 ansible.builtin.lineinfile:
9 path: /etc/sympa/sympa/sympa.conf
10 regexp: '^lang*'
11 line: 'lang {{ sympa_lang }}'
12 backup: true
13 - name: edit config file
14 ansible.builtin.lineinfile:
15 path: /etc/sympa/sympa/sympa.conf
16 regexp: '^domain*'
17 line: 'domain {{ sympa_domain }}'
18 backup: true
19 - name: edit config file
20 ansible.builtin.lineinfile:
21 path: /etc/sympa/sympa/sympa.conf
22 regexp: '^listmaster*'
23 line: 'listmaster {{ sympa_listmaster }}'
24 backup: true
25 - name: edit config file
26 ansible.builtin.lineinfile:
27 path: /etc/sympa/sympa/sympa.conf
28 regexp: '^wwsympa_url*'
29 line: 'wwsympa_url {{ sympa_wwsympa_url }}'
30 backup: true
31 ...