forked from bstoots/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openbsd-5.9-amd64.json
54 lines (54 loc) · 1.79 KB
/
openbsd-5.9-amd64.json
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"builders": [{
"type": "virtualbox-iso",
"guest_os_type": "OpenBSD_64",
"iso_url": "{{user `mirror`}}/5.9/amd64/cd59.iso",
"iso_checksum": "ea3bad95ed6975784bfc85a837820dace4147443e57cf23c1a6e4d12243d37c2",
"iso_checksum_type": "sha256",
"output_directory": "output-openbsd-5.9-amd64",
"vm_name": "packer-openbsd-5.9-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "15s",
"boot_command": [
"S<enter><wait>",
"dhclient em0<enter><wait>",
"ftp -o /install.conf http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-5.9/install.conf<enter><wait>",
"ftp -o /install-chroot.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-5.9/install-chroot.sh<enter><wait>",
"/install -a -f /install.conf && chroot /mnt < /install-chroot.sh && reboot<enter>"
],
"ssh_wait_timeout": "60m",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"guest_additions_mode": "disable",
"shutdown_command": "sudo shutdown -h -p now",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/openbsd/init.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/openbsd/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "openbsd-5.9-amd64.box",
"vagrantfile_template": "vagrantfile_templates/openbsd.rb"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"memory": "512",
"mirror": "http://ftp.openbsd.org/pub/OpenBSD"
}
}