forked from wwestenbrink/vagrant-opsworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathubuntu14.04-opsworks.json
106 lines (106 loc) · 3.76 KB
/
ubuntu14.04-opsworks.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
{
"builders": [
{
"vm_name": "ubuntu-trusty64-opsworks",
"type": "virtualbox-iso",
"guest_os_type": "Ubuntu_64",
"http_directory": "preseed",
"iso_urls": [
"http://releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso",
"http://nl.releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso"
],
"iso_checksum": "01545fa976c8367b4f0d59169ac4866c",
"iso_checksum_type": "md5",
"headless": true,
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_wait_timeout": "10000s",
"boot_wait": "5s",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz noapic ",
"preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{ .Name }} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now",
"hard_drive_interface": "sata",
"disk_size": 10140,
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "512"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
]
},
{
"vm_name": "ubuntu-trusty64-opsworks",
"type": "vmware-iso",
"guest_os_type": "ubuntu-64",
"boot_wait": "10s",
"boot_command": [
"<esc><esc><enter><wait>",
"/install/vmlinuz ",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/preseed.cfg ",
"debian-installer=en_US auto locale=en_US kbd-chooser/method=us ",
"hostname={{.Name}} ",
"fb=false debconf/frontend=noninteractive ",
"keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ",
"keyboard-configuration/variant=USA console-setup/ask_detect=false ",
"initrd=/install/initrd.gz -- <enter>"
],
"disk_size": 10140,
"http_directory": "preseed",
"iso_urls": [
"http://releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso",
"http://nl.releases.ubuntu.com/14.04/ubuntu-14.04-server-amd64.iso"
],
"iso_checksum": "01545fa976c8367b4f0d59169ac4866c",
"iso_checksum_type": "md5",
"headless": true,
"shutdown_command": "echo 'vagrant'|sudo -S shutdown -P now",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_username": "vagrant",
"ssh_wait_timeout": "10000s",
"tools_upload_flavor": "linux",
"tools_upload_path": "/home/vagrant/vmware_tools.iso",
"vmx_data": {
"cpuid.coresPerSocket": "1",
"memsize": "512",
"numvcpus": "1"
}
}
],
"provisioners": [
{
"type": "file",
"source": "provision",
"destination": "/tmp"
},
{
"type": "shell",
"inline": [
"cd /tmp && chmod -R +x provision/"
]
},
{
"type": "shell",
"inline": [
"cd /tmp/provision",
"./base.sh",
"./opsworks.sh",
"./vmtools.sh",
"./vagrant.sh",
"./cleanup.sh"
],
"execute_command": "echo 'vagrant'|{{.Vars}} sudo -E -S bash '{{.Path}}'"
}
],
"post-processors": [{
"type": "vagrant",
"output": "{{.Provider}}/ubuntu-trusty64-opsworks.box"
}]
}