summaryrefslogtreecommitdiff
path: root/roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2019-12-25 18:20:54 +0100
committerChristian Pointner <equinox@spreadspace.org>2019-12-25 18:20:54 +0100
commit2a89948bf13307cc936756c3a43bed51b3b49dc2 (patch)
treea058e111112f03a8dd769efaeb0bf7b4c0a31c71 /roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2
parentinstaller: move bootstrap roles to common subdir (diff)
openbsd vm install almost works now
Diffstat (limited to 'roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2')
-rw-r--r--roles/installer/openbsd/autoinstall/templates/auto_install.conf.j230
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2 b/roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2
new file mode 100644
index 00000000..6719aae3
--- /dev/null
+++ b/roles/installer/openbsd/autoinstall/templates/auto_install.conf.j2
@@ -0,0 +1,30 @@
+System hostname = {{ hostvars[hostname].host_name }}
+
+Which network interface do you wish to configure = {{ install_interface | default(hostvars[hostname].network_cooked.primary.interface) }}
+{% if 'install_dhcp' in hostvars[hostname] and hostvars[hostname].install_dhcp %}
+IPv4 address = dhcp
+{% else %}
+IPv4 address = {{ hostvars[hostname].network_cooked.primary.ip }}
+Netmask = {{ hostvars[hostname].network_cooked.primary.mask }}
+Default IPv4 route = {{ hostvars[hostname].network_cooked.primary.gateway }}
+{% endif %}
+DNS domain name = {{ hostvars[hostname].network_cooked.domain }}
+DNS nameservers = {{ hostvars[hostname].network_cooked.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_tty_serial | default(115200) }}
+{% endif %}
+
+{# TODO: what if there are more than one ssh keys? #}
+Public ssh key for root account = {{ ssh_keys_root[0] }}
+Password for root = !
+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 = http
+HTTP Server = {{ obsd_autoinstall_http_server }}
+Set name(s) = {{ obsd_autoinstall_file_sets }}