summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ele-ymir.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2023-02-23 03:21:10 +0100
committerChristian Pointner <equinox@spreadspace.org>2023-02-23 03:21:10 +0100
commitfd704d292ad9c44990b8af39873dd72939333313 (patch)
treef846c2b8d780661485b81df091f8339ed07a5c6a /inventory/host_vars/ele-ymir.yml
parentadd ele-hyperion (diff)
add ele-ymir
Diffstat (limited to 'inventory/host_vars/ele-ymir.yml')
-rw-r--r--inventory/host_vars/ele-ymir.yml75
1 files changed, 75 insertions, 0 deletions
diff --git a/inventory/host_vars/ele-ymir.yml b/inventory/host_vars/ele-ymir.yml
new file mode 100644
index 00000000..9d131052
--- /dev/null
+++ b/inventory/host_vars/ele-ymir.yml
@@ -0,0 +1,75 @@
+---
+ubuntu_autoinstall_locale: de_AT
+ubuntu_autoinstall_keyboard_layout: de
+ubuntu_autoinstall_keyboard_variant: nodeadkeys
+ubuntu_autoinstall_timezone: Europe/Vienna
+
+ubuntu_autoinstall_desktop: xubuntu
+
+install:
+ efi: true
+ disks:
+ primary: /dev/disk/by-id/ata-OCZ-VERTEX3_OCZ-H6D2708RV4L6CNY8
+ 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: 30G
+ filesystem: ext4
+ mountpoint: /home
+ kernel_cmdline:
+ - "consoleblank=0"
+
+network:
+ nameservers: "{{ network_zones.emc.dns }}"
+ domain: "{{ host_domain }}"
+ primary: &_network_primary_
+ name: eno1
+ address: "{{ network_zones.emc.prefix | ansible.utils.ipaddr(network_zones.emc.offsets[inventory_hostname]) }}"
+ gateway: "{{ network_zones.emc.gateway }}"
+ interfaces:
+ - *_network_primary_
+ - name: eno1.18
+ address: "{{ network_zones.lan.prefix | ansible.utils.ipaddr(network_zones.lan.offsets[inventory_hostname]) }}"
+ vlans:
+ eno1:
+ - "{{ network_zones.lan.vlan }}"
+
+
+apt_repo_components:
+ - main
+ - restricted
+ - universe
+ - multiverse
+
+base_modules_blacklist: "{{ base_modules_blacklist_all_but_sound }}"
+
+admin_users_host:
+ - equinox
+
+
+ws_base_extra_packages:
+ - chromium-browser
+
+ws_base_lightdm_defaults:
+ autologin-user: operator
+ autologin-user-timeout: 0
+
+ws_base_xrandr_setup_script: |
+ #!/bin/bash
+
+ xrandr --output HDMI-1 --mode 1920x1080 --primary
+ xrandr --output HDMI-2 --mode 1920x1080 --rate 50 --left-of HDMI1
+
+ exit 0