-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathdebian-12.pkrvars.hcl
29 lines (29 loc) · 1.02 KB
/
debian-12.pkrvars.hcl
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
# renovate: datasource=custom.debianLinuxRelease
name = "debian-12-template"
iso_file = "debian-12.8.0-amd64-netinst.iso"
iso_url = "https://cdimage.debian.org/mirror/cdimage/archive/12.8.0/amd64/iso-cd/debian-12.8.0-amd64-netinst.iso"
iso_checksum = "file:https://cdimage.debian.org/mirror/cdimage/archive/12.8.0/amd64/iso-cd/SHA256SUMS"
http_directory = "./http/debian"
boot_command = [
"<esc><wait>",
"install ",
" preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"auto ", "locale=en_US.UTF-8 ",
"kbd-chooser/method=us ",
"keyboard-configuration/xkb-keymap=us ",
"netcfg/get_hostname=debian ",
"netcfg/get_domain=local ",
"fb=false ",
"debconf/frontend=noninteractive ",
"console-setup/ask_detect=false ",
"console-keymaps-at/keymap=us ",
"grub-installer/bootdev=/dev/sda ",
"passwd/username=packer ",
"passwd/user-fullname=packer ",
"passwd/user-password=packer ",
"passwd/user-password-again=packer ",
"<enter>"
]
provisioner = [
"userdel --remove --force packer"
]