-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathubuntu_precise_64.json
114 lines (114 loc) · 3.66 KB
/
ubuntu_precise_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
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
112
113
114
{
"provisioners": [
{
"type": "shell",
"scripts": [
"scripts/base.sh",
"scripts/vagrant.sh"
],
"execute_command": "echo 'vagrant'|sudo -S sh '{{.Path}}'"
},
{
"type": "shell",
"script": "scripts/fusion.sh",
"override": {
"virtualbox-iso": {
"execute_command": "echo 'this is not a vmware machine'"
},
"vmware-iso": {
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'"
}
}
},
{
"type": "shell",
"script": "scripts/virtualbox.sh",
"override": {
"virtualbox-iso": {
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'"
},
"vmware-iso": {
"execute_command": "echo 'this is not a virtualbox machine'"
}
}
}
],
"variables": {
"ssh_name": "vagrant",
"ssh_pass": "vagrant",
"hostname": "puppetmaster"
},
"builders": [
{
"type": "vmware-iso",
"vm_name": "ubuntu1204",
"boot_wait": "30s",
"disk_size": 20480,
"guest_os_type": "ubuntu-64",
"http_directory" : "http/cfg_ubuntu",
"iso_checksum": "2cbe868812a871242cdcdd8f2fd6feb9",
"iso_checksum_type": "md5",
"iso_url": "iso/ubuntu-12.04.3-server-amd64.iso",
"skip_compaction": true,
"ssh_username": "{{user `ssh_name`}}",
"ssh_password": "{{user `ssh_pass`}}",
"ssh_port": 22,
"ssh_skip_request_pty": true,
"ssh_wait_timeout": "90m",
"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={{user `hostname`}} ",
"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 {{user `ssh_pass`}} | sudo -S shutdown -P now",
"tools_upload_flavor": "linux",
"vmx_data": {
"memsize": "2048",
"numvcpus": "2",
"cpuid.coresPerSocket": "1",
"scsi0.virtualDev": "lsisas1068"
}
},
{
"type": "virtualbox-iso",
"guest_os_type": "Ubuntu_64",
"iso_url": "iso/ubuntu-12.04.3-server-amd64.iso",
"iso_checksum": "2cbe868812a871242cdcdd8f2fd6feb9",
"iso_checksum_type": "md5",
"ssh_username": "{{user `ssh_name`}}",
"ssh_password": "{{user `ssh_pass`}}",
"ssh_port": 22,
"ssh_wait_timeout": "90m",
"http_directory" : "http/cfg_ubuntu",
"guest_additions_path": "VBoxGuestAdditions_4.3.6.iso",
"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={{user `hostname`}} ",
"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 {{user `ssh_pass`}} | sudo -S shutdown -P now",
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "2048"],
["modifyvm", "{{.Name}}", "--cpus", "2"]
]
}],
"post-processors" : [
{
"type": "vagrant",
"keep_input_artifact": false,
"output": "ubuntu_precise_64_{{.Provider}}.box"
}
]
}