forked from kaorimatz/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openbsd-5.9-amd64.json
110 lines (110 loc) · 4.1 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
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
{
"builders": [{
"type": "qemu",
"iso_url": "{{user `mirror`}}/5.9/amd64/cd59.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-5.9-amd64-{{build_type}}",
"vm_name": "packer-openbsd-5.9-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-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_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`}}/5.9/amd64/cd59.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-5.9-amd64-{{build_type}}",
"vm_name": "packer-openbsd-5.9-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-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_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`}}/5.9/amd64/cd59.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-openbsd-5.9-amd64-{{build_type}}",
"vm_name": "packer-openbsd-5.9-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-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_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`}}"
}
}],
"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-{{.Provider}}.box",
"vagrantfile_template": "vagrantfile_templates/openbsd.rb"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"iso_checksum": "ea3bad95ed6975784bfc85a837820dace4147443e57cf23c1a6e4d12243d37c2",
"iso_checksum_type": "sha256",
"memory": "512",
"mirror": "http://ftp.openbsd.org/pub/OpenBSD",
"ssh_timeout": "60m"
}
}