-
Notifications
You must be signed in to change notification settings - Fork 243
/
openbsd-6.2-amd64.json
114 lines (114 loc) · 4.33 KB
/
openbsd-6.2-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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"builders": [{
"type": "qemu",
"iso_url": "{{user `mirror`}}/6.2/amd64/cd62.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-6.2-amd64-{{build_type}}",
"vm_name": "packer-openbsd-6.2-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "20s",
"boot_command": [
"S<enter><wait>",
"dhclient vio0<enter><wait>",
"ftp -o install.conf http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.conf<enter><wait>",
"ftp -o install.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.sh<enter><wait>",
"ftp -o install-chroot.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install-chroot.sh<enter><wait>",
"sh install.sh < install-chroot.sh && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo shutdown -h -p now",
"qemuargs": [
["-m", "{{user `memory`}}"],
["-smp", "{{user `cpus`}}"]
]
}, {
"type": "virtualbox-iso",
"guest_os_type": "OpenBSD_64",
"iso_url": "{{user `mirror`}}/6.2/amd64/cd62.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-6.2-amd64-{{build_type}}",
"vm_name": "packer-openbsd-6.2-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "20s",
"boot_command": [
"S<enter><wait>",
"dhclient em0<enter><wait>",
"ftp -o install.conf http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.conf<enter><wait>",
"ftp -o install.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.sh<enter><wait>",
"ftp -o install-chroot.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install-chroot.sh<enter><wait>",
"sh install.sh < install-chroot.sh && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"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`}}"]
]
}, {
"type": "vmware-iso",
"guest_os_type": "freebsd-64",
"iso_url": "{{user `mirror`}}/6.2/amd64/cd62.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-6.2-amd64-{{build_type}}",
"vm_name": "packer-openbsd-6.2-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "20s",
"boot_command": [
"S<enter><wait>",
"dhclient em0<enter><wait>",
"ftp -o install.conf http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.conf<enter><wait>",
"ftp -o install.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install.sh<enter><wait>",
"ftp -o install-chroot.sh http://{{.HTTPIP}}:{{.HTTPPort}}/openbsd-6.2/install-chroot.sh<enter><wait>",
"sh install.sh < install-chroot.sh && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo shutdown -h -p now",
"vmx_data": {
"memsize": "{{user `memory`}}",
"numvcpus": "{{user `cpus`}}"
},
"vmx_remove_ethernet_interfaces": true
}],
"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-6.2-amd64-{{.Provider}}.box",
"vagrantfile_template": "vagrantfile_templates/openbsd.rb"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"iso_checksum": "e66b406cf5775c934b04eb2c3af1f8f6f4704f67445b2dd22916a7b962a74667",
"iso_checksum_type": "sha256",
"memory": "512",
"mirror": "http://ftp.openbsd.org/pub/OpenBSD",
"ssh_timeout": "60m"
}
}