blob: 8d09f6daba666c97f7824f252da406fa15ab2f03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
---
install:
efi: yes
disks:
primary: /dev/disk/by-id/ata-WDC_WDS120G2G0A-00JH30_20123D806706
system_lvm:
volumes:
- name: root
size: 20G
filesystem: ext4
mountpoint: /
- name: var+log
size: 768M
filesystem: ext4
mountpoint: /var/log
mount_options:
- noatime
- nodev
- noexec
- name: home
size: 80G
filesystem: ext4
mountpoint: /home
kernel_cmdline:
- "consoleblank=0"
network:
nameservers: "{{ network_zones.lan.dns }}"
domain: "{{ host_domain }}"
primary: &_network_primary_
name: eno1
address: "{{ network_zones.lan.prefix | ansible.utils.ipaddr(network_zones.lan.offsets[inventory_hostname]) }}"
gateway: "{{ network_zones.lan.gateway }}"
interfaces:
- *_network_primary_
base_modules_blacklist: "{{ base_modules_blacklist_all_but_sound }}"
browser_kiosk_xinit_commands_extra: |
xrandr --output HDMI-1 --mode 1920x1080 --rate 50
browser_kiosk_asound_conf: |
pcm.hdmi0 { type hw; card HDMI; device 3; }
ctl.hdmi0 { type hw; card HDMI; device 3; }
pcm.analog { type hw; card PCH; }
ctl.analog { type hw; card PCH; }
pcm.!default pcm.analog
ctl.!default ctl.analog
browser_kiosk_url: "https://remote.elev8.at/stream-ui/player.html#control={{ hostvars['ele-jitsi'].jitsi_meet_streamui.default_control_room }}&displayName={{ host_name }}"
|