forked from box-cutter/windows-vm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
win2012-datacenter-cygwin.json
100 lines (100 loc) · 3.02 KB
/
win2012-datacenter-cygwin.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
{
"variables": {
"cm": "chef",
"cm_version": "",
"iso_url": "iso/en_windows_server_2012_x64_dvd_915478.iso",
"iso_checksum": "d09e752b1ee480bc7e93dfa7d5c3a9b8aac477ba"
},
"builders": [
{
"vm_name": "win2012-datacenter-cygwin",
"type": "vmware-iso",
"guest_os_type": "windows8srv-64",
"iso_url": "{{ user `iso_url` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"iso_checksum_type": "sha1",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_wait_timeout": "10000s",
"floppy_files": [
"floppy/win2012-datacenter/Autounattend.xml",
"floppy/00-run-all-scripts.cmd",
"floppy/install-winrm.cmd",
"floppy/powerconfig.bat",
"floppy/cygwin.sh",
"floppy/passwordchange.bat",
"floppy/cygwin.bat",
"floppy/_uninstall-cygwin.bat",
"floppy/zz-start-sshd.cmd"
],
"tools_upload_flavor": "windows",
"shutdown_command": "shutdown /s /t 1 /f /d p:4:1 /c 'Packer Shutdown'",
"disk_size": 40960,
"vmx_data": {
"memsize": "768",
"numvcpus": "1",
"cpuid.coresPerSocket": "1"
}
},
{
"vm_name": "win2012-datacenter-cygwin",
"type": "virtualbox-iso",
"guest_os_type": "Windows2012_64",
"iso_url": "{{ user `iso_url` }}",
"iso_checksum": "{{ user `iso_checksum` }}",
"iso_checksum_type": "sha1",
"ssh_username": "vagrant",
"ssh_password": "vagrant",
"ssh_wait_timeout": "10000s",
"floppy_files": [
"floppy/win2012-datacenter/Autounattend.xml",
"floppy/00-run-all-scripts.cmd",
"floppy/install-winrm.cmd",
"floppy/powerconfig.bat",
"floppy/cygwin.sh",
"floppy/passwordchange.bat",
"floppy/cygwin.bat",
"floppy/_uninstall-cygwin.bat",
"floppy/zz-start-sshd.cmd",
"floppy/oracle-cert.cer"
],
"shutdown_command": "shutdown /s /t 1 /f /d p:4:1 /c 'Packer Shutdown'",
"disk_size": 40960,
"vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "768"],
["modifyvm", "{{.Name}}", "--cpus", "1"]
]
}
],
"provisioners": [
{
"type": "shell",
"remote_path": "/tmp/script.bat",
"environment_vars": [
"CM={{user `cm`}}",
"CM_VERSION={{user `cm_version`}}"
],
"execute_command": "{{.Vars}} cmd /c $(/bin/cygpath -m '{{.Path}}')",
"scripts": [
"script/vagrant.bat",
"script/cmtool.bat",
"script/vmtool.bat",
"script/clean.bat",
"script/ultradefrag.bat",
"script/uninstall-7zip.bat",
"script/sdelete.bat"
]
},
{
"type": "shell",
"inline": ["rm -f /tmp/script.bat"]
}
],
"post-processors": [{
"type": "vagrant",
"keep_input_artifact": false,
"compression_level": 1,
"vagrantfile_template": "tpl/vagrantfile-win2012-datacenter-cygwin.tpl",
"output": "box/{{.Provider}}/win2012-datacenter-cygwin-{{user `cm`}}{{user `cm_version`}}.box"
}]
}