-
Notifications
You must be signed in to change notification settings - Fork 1
/
raring.json
69 lines (69 loc) · 1.62 KB
/
raring.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
{
"builders": [
{
"type": "vmware",
"iso_url": "http://releases.ubuntu.com/13.04/ubuntu-13.04-server-amd64.iso",
"iso_checksum": "7d335ca541fc4945b674459cde7bffb9",
"iso_checksum_type": "md5",
"tools_upload_flavor": "linux",
"ssh_username": "vagrant",
"ssh_password": "packer",
"http_directory": "preseed",
"headless": false,
"boot_command": [
"<esc> ",
"<esc> ",
"<enter> ",
"<wait> ",
"install ",
"locale=en_US ",
"url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/ubuntu.cfg ",
"priority=critical ",
"debconf/frontend=noninteractive ",
"<enter>"
],
"shutdown_command": "sudo shutdown -P now",
"vmx_data": {
"vhv.enable": "true"
}
}
],
"provisioners": [
{
"type": "file",
"source": "files/vmware9.compat_mm.patch",
"destination": "/tmp/vmware9.compat_mm.patch"
},
{
"type": "file",
"source": "files/vmware9.k3.8rc4.patch",
"destination": "/tmp/vmware9.k3.8rc4.patch"
},
{
"type": "file",
"source": "files/vmware_hgfs_fix.sh",
"destination": "/tmp/vmware_hgfs_fix.sh"
},
{
"type": "file",
"source": "files/vmware_vmci_fix.sh",
"destination": "/tmp/vmware_vmci_fix.sh"
},
{
"type": "file",
"source": "files/vagrant.pub",
"destination": "/tmp/vagrant.pub"
},
{
"type": "shell",
"script": "files/raring-tools.sh"
},
{
"type": "shell",
"script": "files/vagrant-ssh.sh"
}
],
"post-processors": [
"vagrant"
]
}