-
Notifications
You must be signed in to change notification settings - Fork 11
/
vb-win2012r2-powershell5.json
66 lines (66 loc) · 1.54 KB
/
vb-win2012r2-powershell5.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
{
"variables": {
"os_name": "win2012r2",
"image_name": "powershell5",
"source_path": "./output-win2012r2-base/win2012r2-base.ovf",
"headless": "true"
},
"builders": [
{
"type": "virtualbox-ovf",
"vboxmanage": [
[
"modifyvm",
"{{.Name}}",
"--memory",
"2048"
],
[
"modifyvm",
"{{.Name}}",
"--vram",
"48"
],
[
"modifyvm",
"{{.Name}}",
"--cpus",
"2"
]
],
"source_path": "{{user `source_path`}}",
"vm_name": "{{ user `os_name` }}-{{ user `image_name` }}",
"guest_additions_mode": "disable",
"headless": "{{ user `headless` }}",
"communicator": "winrm",
"winrm_username": "vagrant",
"winrm_password": "vagrant",
"winrm_timeout": "1h",
"shutdown_command": "shutdown /s /t 10 /f /d p:4:1 /c \"Packer Shutdown\"",
"shutdown_timeout": "1h",
"output_directory": "./output-{{ user `os_name` }}-{{ user `image_name` }}/"
}
],
"provisioners": [
{
"type": "powershell",
"elevated_user": "vagrant",
"elevated_password": "vagrant",
"script": "Scripts/Install-PowerShell5.ps1",
"valid_exit_codes": [
0,
3010
]
},
{
"type": "windows-restart",
"restart_timeout": "1h"
},
{
"elevated_password": "vagrant",
"elevated_user": "vagrant",
"script": "scripts/cleanup.ps1",
"type": "powershell"
}
]
}