summaryrefslogtreecommitdiff
path: root/roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2
blob: e6437ff1fa7c339476e39abf3407d476bdbd5bb0 (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
System hostname = {{ host_name }}

Which network interface do you wish to configure = {{ install_interface | default(network.primary.name) }}
{% if (install_dhcp | default(false)) %}
IPv4 address = dhcp
{% else %}
IPv4 address = {{ network.primary.address | ipaddr('address') }}
Netmask = {{ network.primary.address | ipaddr('netmask') }}
Default IPv4 route = {{ network.primary.gateway }}
{% endif %}
DNS domain name = {{ network.domain }}
DNS nameservers = {{ network.nameservers | join(' ') }}

{% if obsd_autoinstall_serial_device is defined %}
Change the default console to {{ obsd_autoinstall_serial_device }} = yes
Which speed should {{ obsd_autoinstall_serial_device }} use = {{ obsd_autoinstall_serial_baudrate | default(115200) }}
{% endif %}

{# we will install only one key for now, install.site will install the rest #}
Public ssh key for root account = {{ ssh_keys_root[0] }}
Password for root = this-very-very-secure-password-will-be-overwritten-by-install.site
Setup a user = no
Start sshd(8) by default = yes
Allow root ssh login = prohibit-password

What timezone are you in = Europe/Vienna

Location of sets = cd0
Pathname to the sets = /
Set name(s) = all
{# iso-images don't contain the SHA256.sig file but have been verified after downloading them #}
Directory does not contain SHA256.sig. Continue without verification = yes