forked from kaorimatz/packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
archlinux-x86_64.json
52 lines (52 loc) · 1.62 KB
/
archlinux-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
{
"builders": [{
"type": "virtualbox-iso",
"guest_os_type": "ArchLinux_64",
"iso_url": "{{user `mirror`}}/iso/2016.06.01/archlinux-2016.06.01-dual.iso",
"iso_checksum": "5e755859c18ef9bf7b583a9f4f5c0a30120a56df",
"iso_checksum_type": "sha1",
"output_directory": "output-archlinux-x86_64",
"vm_name": "packer-archlinux-x86_64",
"disk_size": "{{user `disk_size`}}",
"headless": "{{user `headless`}}",
"http_directory": "http",
"boot_wait": "5s",
"boot_command": [
"<enter><wait10><wait10>",
"curl -O 'http://{{.HTTPIP}}:{{.HTTPPort}}/archlinux/install{,-chroot}.sh'<enter><wait>",
"bash install.sh < install-chroot.sh && systemctl reboot<enter>"
],
"ssh_wait_timeout": "60m",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"guest_additions_mode": "disable",
"shutdown_command": "sudo systemctl poweroff",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "{{user `memory`}}"],
["modifyvm", "{{.Name}}", "--cpus", "{{user `cpus`}}"]
]
}],
"provisioners": [{
"type": "shell",
"scripts": [
"scripts/archlinux/virtualbox.sh",
"scripts/common/vagrant.sh",
"scripts/common/sshd.sh",
"scripts/archlinux/cleanup.sh",
"scripts/common/minimize.sh"
]
}],
"post-processors": [{
"type": "vagrant",
"compression_level": "{{user `compression_level`}}",
"output": "archlinux-x86_64.box"
}],
"variables": {
"compression_level": "6",
"cpus": "1",
"disk_size": "40000",
"headless": "false",
"memory": "512",
"mirror": "http://mirrors.kernel.org/archlinux"
}
}