forked from ligurio/openvz-packer-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
virtuozzo-7.0.json
111 lines (111 loc) · 3.98 KB
/
virtuozzo-7.0.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
{
"provisioners": [
{
"type": "shell",
"execute_command": "echo 'vagrant' | {{.Vars}} sudo -E -S bash '{{.Path}}'",
"environment_vars": [
"HOME_DIR=/home/vagrant"
],
"scripts": [
"scripts/sshd.sh",
"scripts/networking.sh",
"scripts/vagrant.sh",
"scripts/vmtools.sh",
"scripts/cleanup.sh",
"scripts/minimize.sh"
]
}
],
"post-processors": [
{
"type": "vagrant",
"output": "builds/{{user `template`}}-{{.Provider}}.box"
}
],
"builders": [
{
"type": "virtualbox-iso",
"boot_command": [
"c linux /images/pxeboot/vmlinuz text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `ks_path`}}<enter>initrd /images/pxeboot/initrd.img<enter>boot<enter><wait>"
],
"boot_wait": "7s",
"disk_size": 65536,
"guest_os_type": "RedHat_64",
"http_directory": "http",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_url": "{{user `iso_url`}}",
"output_directory": "packer-{{user `template`}}-virtualbox",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo '/sbin/halt -h -p' > /tmp/shutdown.sh; echo 'vagrant'|sudo -S sh '/tmp/shutdown.sh'",
"guest_additions_path": "VBoxGuestAdditions_{{.Version}}.iso",
"virtualbox_version_file": ".vbox_version",
"vboxmanage": [
[ "modifyvm", "{{.Name}}", "--memory", "1024" ],
[ "modifyvm", "{{.Name}}", "--cpus", "1" ],
[ "modifyvm", "{{.Name}}", "--nested-hw-virt", "on" ]
],
"vm_name": "{{user `template`}}"
},
{
"type": "vmware-iso",
"boot_command": [
"c linux /images/pxeboot/vmlinuz text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `ks_path`}}<enter>initrd /images/pxeboot/initrd.img<enter>boot<enter><wait>"
],
"boot_wait": "7s",
"disk_size": 65536,
"guest_os_type": "centos-64",
"http_directory": "http",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_url": "{{user `iso_url`}}",
"output_directory": "packer-{{user `template`}}-vmware",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo '/sbin/halt -h -p' > /tmp/shutdown.sh; echo 'vagrant'|sudo -S sh '/tmp/shutdown.sh'",
"tools_upload_flavor": "linux",
"vm_name": "{{user `template`}}",
"vmx_data": {
"memsize": "1024",
"numvcpus": "1",
"cpuid.coresPerSocket": "1"
}
},
{
"type": "parallels-iso",
"boot_command": [
"c linux /images/pxeboot/vmlinuz text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/{{user `ks_path`}}<enter>initrd /images/pxeboot/initrd.img<enter>boot<enter><wait>"
],
"boot_wait": "7s",
"disk_size": 65536,
"guest_os_type": "psbm",
"http_directory": "http",
"iso_checksum": "{{user `iso_checksum`}}",
"iso_url": "{{user `iso_url`}}",
"output_directory": "packer-{{user `template`}}-parallels",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_port": 22,
"ssh_wait_timeout": "10000s",
"shutdown_command": "echo '/sbin/halt -h -p' > /tmp/shutdown.sh; echo 'vagrant'|sudo -S sh '/tmp/shutdown.sh'",
"parallels_tools_flavor": "lin",
"prlctl": [
[ "set", "{{.Name}}", "--memsize", "1024" ],
[ "set", "{{.Name}}", "--cpus", "1" ],
[ "set", "{{.Name}}", "--nested-virt", "on"],
[ "set", "{{.Name}}", "--pmu-virt", "on"],
[ "set", "{{.Name}}", "--disable-timezone-sync", "on" ]
],
"vm_name": "{{user `template`}}"
}
],
"variables": {
"iso_checksum": "sha256:308479b91e71fb64d80e30ac5a8eea0d57aeaa5bf706c8fbb02751e0e3020c29",
"iso_url": "https://download.openvz.org/virtuozzo/releases/7.0/x86_64/iso/openvz-iso-7.0.15-628.iso",
"ks_path": "virtuozzo-7.0/ks.cfg",
"template": "openvz-7.0-x64"
}
}