summaryrefslogtreecommitdiff
path: root/roles/installer/ubuntu/autoinstall/defaults/main.yml
blob: 1a4fd3ed96ac8cc38916f5ab492ec02f398e75a4 (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
---
# ubuntu_autoinstall_tmpdir:

ubuntu_autoinstall_locale: en_US

ubuntu_autoinstall_keyboard_layout: de
ubuntu_autoinstall_keyboard_variant: nodeadkeys

ubuntu_autoinstall_timezone: Europe/Vienna

# ubuntu_autoinstall_kernel_image:
ubuntu_autoinstall_virtual_machine: no

ubuntu_autoinstall_efi_esp_size: 128M

ubuntu_autoinstall_system_lvm_size_default: all
ubuntu_autoinstall_system_lvm_volumes_default:
  - name: root
    size: 2.5G
    filesystem: ext4
    mountpoint: /
  - name: var
    size: 1280M
    filesystem: ext4
    mountpoint: /var
  - name: var+log
    size: 768M
    filesystem: ext4
    mountpoint: /var/log
    mount_options:
    - nodev
    - noatime
    - noexec


ubuntu_autoinstall_install_tasks: []