forked from kaorimatz/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
freebsd-10.4-amd64.json
118 lines (118 loc) · 4.41 KB
/
freebsd-10.4-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
115
116
117
118
{
"builders": [{
"type": "qemu",
"iso_url": "{{user `mirror`}}/releases/ISO-IMAGES/10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-freebsd-10.4-amd64-{{build_type}}",
"vm_name": "packer-freebsd-10.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"2<enter><wait10><wait10><wait10>",
"<enter><wait>",
"mdmfs -s 100m md1 /tmp<enter><wait>",
"dhclient -l /tmp/dhclient.leases -p /tmp/dhclient.pid vtnet0<enter><wait5>",
"fetch -o /tmp/installerconfig http://{{.HTTPIP}}:{{.HTTPPort}}/freebsd-10.4/installerconfig<enter><wait>",
"bsdinstall script /tmp/installerconfig && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo poweroff",
"qemuargs": [
["-m", "{{user `memory`}}"],
["-smp", "{{user `cpus`}}"]
]
}, {
"type": "virtualbox-iso",
"guest_os_type": "FreeBSD_64",
"iso_url": "{{user `mirror`}}/releases/ISO-IMAGES/10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-freebsd-10.4-amd64-{{build_type}}",
"vm_name": "packer-freebsd-10.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "10s",
"boot_command": [
"2<enter><wait10><wait10><wait10>",
"<enter><wait>",
"mdmfs -s 100m md1 /tmp<enter><wait>",
"dhclient -l /tmp/dhclient.leases -p /tmp/dhclient.pid em0<enter><wait5>",
"fetch -o /tmp/installerconfig http://{{.HTTPIP}}:{{.HTTPPort}}/freebsd-10.4/installerconfig<enter><wait>",
"bsdinstall script /tmp/installerconfig && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"guest_additions_mode": "disable",
"shutdown_command": "sudo poweroff",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}, {
"type": "vmware-iso",
"guest_os_type": "freeBSD-64",
"iso_url": "{{user `mirror`}}/releases/ISO-IMAGES/10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-freebsd-10.4-amd64-{{build_type}}",
"vm_name": "packer-freebsd-10.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "10s",
"boot_command": [
"2<enter><wait10><wait10><wait10>",
"<enter><wait>",
"mdmfs -s 100m md1 /tmp<enter><wait>",
"dhclient -l /tmp/dhclient.leases -p /tmp/dhclient.pid em0<enter><wait5>",
"fetch -o /tmp/installerconfig http://{{.HTTPIP}}:{{.HTTPPort}}/freebsd-10.4/installerconfig<enter><wait>",
"bsdinstall script /tmp/installerconfig && reboot<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"tools_upload_flavor": "freebsd",
"shutdown_command": "sudo poweroff",
"vmx_data": {
"memsize": "{{user `memory`}}",
"numvcpus": "{{user `cpus`}}"
},
"vmx_remove_ethernet_interfaces": true
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/freebsd/virtualbox.sh",
"scripts/freebsd/vmware.sh",
"scripts/freebsd/init.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/freebsd/cleanup.sh",
"scripts/freebsd/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "freebsd-10.4-amd64-{{.Provider}}.box",
"vagrantfile_template": "vagrantfile_templates/freebsd.rb"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"iso_checksum": "7ac73b2a899024e1d9e71e55b5c9b9ac13938468206c72c5a1cf23c7e0a715b4",
"iso_checksum_type": "sha256",
"memory": "512",
"mirror": "http://ftp.freebsd.org/pub/FreeBSD",
"ssh_timeout": "60m"
}
}