blob: 50a35ae127f8b42e8e18b6bf1639bf5218414cfe (
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
|
---
# 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_desktop: xubuntu
ubuntu_autoinstall_poweroff_when_done: no
ubuntu_autoinstall_manual_partitioning: no
ubuntu_autoinstall_efi_esp_size: 128M
ubuntu_autoinstall_swraid_boot_size: 256M
ubuntu_autoinstall_system_lvm_size_default: all
ubuntu_autoinstall_system_lvm_volumes_default:
- name: root
size: "{{ system_lvm_volume_size_root | default('2560M') }}"
filesystem: ext4
mountpoint: /
- name: var
size: "{{ system_lvm_volume_size_var | default('1280M') }}"
filesystem: ext4
mountpoint: /var
- name: var+log
size: "{{ system_lvm_volume_size_varlog | default('768M') }}"
filesystem: ext4
mountpoint: /var/log
mount_options:
- noatime
- nodev
- noexec
ubuntu_autoinstall_install_tasks: []
|