2 - name: install server specific packages
7 - name: edit config file
8 ansible.builtin.lineinfile:
9 path: /etc/sympa/sympa/sympa.conf
11 line: 'lang {{ sympa_lang }}'
13 - name: edit config file
14 ansible.builtin.lineinfile:
15 path: /etc/sympa/sympa/sympa.conf
17 line: 'domain {{ sympa_domain }}'
19 - name: edit config file
20 ansible.builtin.lineinfile:
21 path: /etc/sympa/sympa/sympa.conf
22 regexp: '^listmaster*'
23 line: 'listmaster {{ sympa_listmaster }}'
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 }}'