summaryrefslogtreecommitdiff
path: root/inventory/host_vars/ele-tarvos.yml
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2023-02-23 18:59:53 +0100
committerChristian Pointner <equinox@spreadspace.org>2023-02-23 18:59:53 +0100
commiteca91e4cf57719bb3b70c59ff373e7211924d5cc (patch)
tree2cb7559d362ecffa6825473fe9f1053885fa11f7 /inventory/host_vars/ele-tarvos.yml
parentelevate: update prometheus components and add ele-ymir, ele-hyperion (diff)
elevate: install ele-tarvos
Diffstat (limited to 'inventory/host_vars/ele-tarvos.yml')
-rw-r--r--inventory/host_vars/ele-tarvos.yml69
1 files changed, 69 insertions, 0 deletions
diff --git a/inventory/host_vars/ele-tarvos.yml b/inventory/host_vars/ele-tarvos.yml
new file mode 100644
index 00000000..0618275f
--- /dev/null
+++ b/inventory/host_vars/ele-tarvos.yml
@@ -0,0 +1,69 @@
+---
+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:
+ disks:
+ primary: /dev/disk/by-id/ata-Samsung_SSD_850_PRO_128GB_S1SMNSAG201847J
+ 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: 50G
+ filesystem: ext4
+ mountpoint: /home
+ kernel_cmdline:
+ - "consoleblank=0"
+
+network:
+ nameservers: "{{ network_zones.lan.dns }}"
+ domain: "{{ host_domain }}"
+ primary: &_network_primary_
+ name: enp0s31f6
+ address: "{{ network_zones.lan.prefix | ansible.utils.ipaddr(network_zones.lan.offsets[inventory_hostname]) }}"
+ gateway: "{{ network_zones.lan.gateway }}"
+ interfaces:
+ - *_network_primary_
+
+
+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: elevate
+ autologin-user-timeout: 0
+
+# ws_base_xrandr_setup_script: |
+# #!/bin/bash
+#
+# xrandr --output DP-1 --mode 1920x1080 --primary
+# xrandr --output HDMI-1 --mode 1920x1080 --rate 50 --right-of DP-1
+#
+# exit 0