forked from bstoots/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fedora-rawhide-x86_64.json
54 lines (54 loc) · 1.64 KB
/
fedora-rawhide-x86_64.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": "Fedora_64",
"iso_url": "{{user `mirror`}}/releases/23/Server/x86_64/iso/Fedora-Server-netinst-x86_64-23.iso",
"iso_checksum": "32e0a15a1c71d0e2fd36a0af5b67a3b3af82976d2dfca0aefcb90d42f2ae6844",
"iso_checksum_type": "sha256",
"output_directory": "output-fedora-rawhide-x86_64",
"vm_name": "packer-fedora-rawhide-x86_64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<tab> ",
"inst.ks=http://{{.HTTPIP}}:{{.HTTPPort}}/fedora-rawhide/anaconda-ks.cfg ",
"biosdevname=0 ",
"net.ifnames=0 ",
"<enter>"
],
"ssh_wait_timeout": "60m",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"shutdown_command": "sudo systemctl poweroff",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/fedora/virtualbox.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/fedora/locale.sh",
"scripts/fedora/cleanup.sh",
"scripts/common/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "fedora-rawhide-x86_64.box"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"memory": "512",
"mirror": "http://download.fedoraproject.org/pub/fedora/linux"
}
}