Skip to content

Commit aa4e8f2

Browse files
fixup! Add support for NetBSD 10.0
1 parent 21f8514 commit aa4e8f2

File tree

4 files changed

+17
-1
lines changed

4 files changed

+17
-1
lines changed

netbsd.pkr.hcl

+11-1
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@ variable "bootblock_selection_steps" {
129129
description = "Step to select bootblock"
130130
}
131131

132+
variable "pkgin_network_information" {
133+
type = list(list(string))
134+
description = "Confirm network information during pkgin install"
135+
}
136+
132137
variable "post_install_disk_device" {
133138
type = string
134139
description = "The disk device to mount during post install"
@@ -248,7 +253,12 @@ source "qemu" "qemu" {
248253
["a<enter><wait5>", "Is the network information correct, Yes"],
249254

250255
// Enable installation of binary packages
251-
["e<enter><wait5>"],
256+
["e<enter><wait5>"]
257+
],
258+
259+
var.pkgin_network_information,
260+
261+
[
252262
["x<enter><wait2m>", "Install pkgin and update package summary"],
253263
["<enter><wait5>", "Hit enter to continue"],
254264

var_files/10.0/common.pkrvars.hcl

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ generate_entropy_steps = [
66
hostname_step = [
77
["<enter><wait>", "Your host name"]
88
]
9+
10+
pkgin_network_information = [
11+
["a<enter><wait5>", "Is the network information correct, Yes"]
12+
]

var_files/9.2/common.pkrvars.hcl

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ root_password_pre_steps = [
77

88
generate_entropy_steps = []
99
hostname_step = []
10+
pkgin_network_information = []

var_files/9.3/common.pkrvars.hcl

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ root_password_pre_steps = [
77

88
generate_entropy_steps = []
99
hostname_step = []
10+
pkgin_network_information = []

0 commit comments

Comments
 (0)