forked from kaorimatz/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debian-9.4-amd64.json
111 lines (111 loc) · 3.59 KB
/
debian-9.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
{
"builders": [{
"type": "qemu",
"iso_url": "{{user `mirror`}}/9.4.0/amd64/iso-cd/debian-9.4.0-amd64-netinst.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-debian-9.4-amd64-{{build_type}}",
"vm_name": "packer-debian-9.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<esc><wait>",
"auto ",
"net.ifnames=0 ",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/debian-9.4/preseed.cfg ",
"<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo systemctl poweroff",
"qemuargs": [
["-m", "{{user `memory`}}"],
["-smp", "{{user `cpus`}}"]
]
}, {
"type": "virtualbox-iso",
"guest_os_type": "Debian_64",
"iso_url": "{{user `mirror`}}/9.4.0/amd64/iso-cd/debian-9.4.0-amd64-netinst.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-debian-9.4-amd64-{{build_type}}",
"vm_name": "packer-debian-9.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<esc><wait>",
"auto ",
"net.ifnames=0 ",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/debian-9.4/preseed.cfg ",
"<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo systemctl poweroff",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}, {
"type": "vmware-iso",
"guest_os_type": "debian8-64",
"iso_url": "{{user `mirror`}}/9.4.0/amd64/iso-cd/debian-9.4.0-amd64-netinst.iso",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"output_directory": "output-debian-9.4-amd64-{{build_type}}",
"vm_name": "packer-debian-9.4-amd64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<esc><wait>",
"auto ",
"net.ifnames=0 ",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/debian-9.4/preseed.cfg ",
"<enter>"
],
"ssh_timeout": "{{user `ssh_timeout`}}",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo systemctl poweroff",
"vmx_data": {
"memsize": "{{user `memory`}}",
"numvcpus": "{{user `cpus`}}"
},
"vmx_remove_ethernet_interfaces": true
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/debian/virtualbox.sh",
"scripts/debian-9.4/vmware.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/debian/cleanup.sh",
"scripts/common/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "debian-9.4-amd64-{{.Provider}}.box"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"iso_checksum": "124d270006703f2111224dec3bf7a9d01450168be41d4834f88fdd035552b044",
"iso_checksum_type": "sha256",
"memory": "512",
"mirror": "http://cdimage.debian.org/debian-cd",
"ssh_timeout": "60m"
}
}