blob: 2dcc44ccdccb94aef7c1a7f6e55d4df0a6303ee3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
- import_role:
name: jail
tasks_from: jail_setup
- name: Set thelounge user and group
community.general.sysrc:
name: "{{ item.name }}"
value: "{{ item.value }}"
loop:
- { name: thelounge_user, value: root }
- { name: thelounge_group, value: wheel }
- name: Deploy thelounge config
copy:
src: "{{ jail_role_dir }}/files/config.js"
dest: /var/db/thelounge/config.js
owner: root
group: wheel
mode: "0644"
notify: Restart thelounge
- import_role:
name: jail
tasks_from: jail_launch
|