diff options
author | Christian Pointner <equinox@spreadspace.org> | 2022-09-12 21:59:10 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2022-09-12 21:59:10 +0200 |
commit | be7e9da811a53141eb122ddfae9282ac9ae50d5c (patch) | |
tree | 7ffe8bd503d0a5d2b5f8648df838837e44f5d2fd /inventory | |
parent | kodi/standalone: fix name for polkit config files (diff) |
new kodi deployment ch-mcbr
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/group_vars/chaos-at-home/network.yml | 5 | ||||
-rw-r--r-- | inventory/host_vars/ch-mc-pi.yml | 13 | ||||
-rw-r--r-- | inventory/host_vars/ch-mcbr.yml | 47 | ||||
-rw-r--r-- | inventory/hosts.ini | 3 |
4 files changed, 52 insertions, 16 deletions
diff --git a/inventory/group_vars/chaos-at-home/network.yml b/inventory/group_vars/chaos-at-home/network.yml index 90e05149..c6279ed6 100644 --- a/inventory/group_vars/chaos-at-home/network.yml +++ b/inventory/group_vars/chaos-at-home/network.yml @@ -13,8 +13,9 @@ network_zones: limit: 199 offsets: ch-equinox-ws: 1 - ch-mc: 10 - ch-mc-pi: 11 + ch-mc: 10 ### legacy + ch-mclr: 10 + ch-mcbr: 11 ch-telesto: 20 ch-calypso: 21 ch-thetys: 22 diff --git a/inventory/host_vars/ch-mc-pi.yml b/inventory/host_vars/ch-mc-pi.yml deleted file mode 100644 index 9f46a600..00000000 --- a/inventory/host_vars/ch-mc-pi.yml +++ /dev/null @@ -1,13 +0,0 @@ ---- -#raspios_variant: desktop -raspios_arch: arm64 - -network: - nameservers: "{{ network_zones.lan.dns }}" - domain: "{{ host_domain }}" - primary: &_network_primary_ - name: eth0 - address: "{{ network_zones.lan.prefix | ansible.utils.ipaddr(network_zones.lan.offsets[inventory_hostname]) }}" - gateway: "{{ network_zones.lan.gateway }}" - interfaces: - - *_network_primary_ diff --git a/inventory/host_vars/ch-mcbr.yml b/inventory/host_vars/ch-mcbr.yml new file mode 100644 index 00000000..1ac236c8 --- /dev/null +++ b/inventory/host_vars/ch-mcbr.yml @@ -0,0 +1,47 @@ +--- +install: + efi: no + disks: + primary: /dev/disk/by-id/ata-OCZ-VERTEX2_OCZ-B7P98I86F4PC14I7 + system_lvm: + volumes: + - name: root + size: 30G + filesystem: ext4 + mountpoint: / + - name: var+log + size: 768M + filesystem: ext4 + mountpoint: /var/log + mount_options: + - noatime + - nodev + - noexec + +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_none }}" + +apt_repo_components: + - main + - contrib + - non-free + + +kodi_standalone_support_packages_extra: + - i965-va-driver-shaders + +kodi_standalone_use_backports: yes +kodi_standalone_kodi_packages_extra: + - kodi-repository-kodi + - kodi-inputstream-adaptive + - kodi-inputstream-rtmp diff --git a/inventory/hosts.ini b/inventory/hosts.ini index d1143a7d..3e4288dc 100644 --- a/inventory/hosts.ini +++ b/inventory/hosts.ini @@ -37,7 +37,8 @@ ch-mon host_name=mon ch-omd host_name=omd ch-epimetheus host_name=epimetheus ch-mc host_name=mc -ch-mc-pi host_name=mc-pi +ch-mclr host_name=mclr +ch-mcbr host_name=mcbr ch-atlas host_name=atlas ch-pan host_name=pan ch-keyserver host_name=keyserver |