Skip to content
This repository was archived by the owner on Oct 4, 2019. It is now read-only.

Commit a79f8a6

Browse files
committed
Merge branch 'release-1.18'
2 parents 18fb607 + 82ccaf3 commit a79f8a6

7 files changed

+42
-41
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v1.18 (May 16th, 2014)
2+
* Require Vagrant 1.6.2 (#57)
3+
* Remove WinRM port forward, as it's done automatically in Vagrant 1.6.2+ (#57)
4+
* Update chef-client source to getchef.com (#63)
5+
16
## v1.16 (May 7th, 2014)
27

38
* Fix VirtualBox ISO URLs

scripts/chef.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
if not exist "C:\Windows\Temp\chef.msi" (
2-
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.opscode.com/chef/install.msi', 'C:\Windows\Temp\chef.msi')" <NUL
2+
powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://www.getchef.com/chef/install.msi', 'C:\Windows\Temp\chef.msi')" <NUL
33
)
44

55
msiexec /qb /i C:\Windows\Temp\chef.msi

vagrantfile-windows_2008_r2.template

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4+
Vagrant.require_version ">= 1.6.2"
5+
46
Vagrant.configure("2") do |config|
57
config.vm.define "vagrant-windows-2008-r2"
68
config.vm.box = "windows_2008_r2"
7-
8-
if !Vagrant.has_plugin?('vagrant-windows')
9-
puts "vagrant-windows missing, please install the vagrant-windows plugin!"
10-
puts "Run this command in your terminal:"
11-
puts "vagrant plugin install vagrant-windows"
12-
exit 1
13-
end
9+
config.vm.communicator = "winrm"
1410

1511
# Admin user name and password
1612
config.winrm.username = "vagrant"
@@ -19,17 +15,20 @@ Vagrant.configure("2") do |config|
1915
config.vm.guest = :windows
2016
config.windows.halt_timeout = 15
2117

22-
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
18+
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
19+
2320

2421
config.vm.provider :virtualbox do |v, override|
2522
#v.gui = true
2623
v.customize ["modifyvm", :id, "--memory", 2048]
2724
v.customize ["modifyvm", :id, "--cpus", 2]
25+
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
2826
end
2927

3028
config.vm.provider :vmware_fusion do |v, override|
3129
#v.gui = true
3230
v.vmx["memsize"] = "2048"
31+
v.vmx["numvcpus"] = "2"
3332
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
3433
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
3534
v.vmx["RemoteDisplay.vnc.port"] = "5900"
@@ -39,6 +38,7 @@ Vagrant.configure("2") do |config|
3938
config.vm.provider :vmware_workstation do |v, override|
4039
#v.gui = true
4140
v.vmx["memsize"] = "2048"
41+
v.vmx["numvcpus"] = "2"
4242
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
4343
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
4444
v.vmx["RemoteDisplay.vnc.port"] = "5900"

vagrantfile-windows_2012.template

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4+
Vagrant.require_version ">= 1.6.2"
5+
46
Vagrant.configure("2") do |config|
57
config.vm.define "vagrant-windows-2012"
68
config.vm.box = "windows_2012"
7-
8-
if !Vagrant.has_plugin?('vagrant-windows')
9-
puts "vagrant-windows missing, please install the vagrant-windows plugin!"
10-
puts "Run this command in your terminal:"
11-
puts "vagrant plugin install vagrant-windows"
12-
exit 1
13-
end
9+
config.vm.communicator = "winrm"
1410

1511
# Admin user name and password
1612
config.winrm.username = "vagrant"
@@ -19,17 +15,19 @@ Vagrant.configure("2") do |config|
1915
config.vm.guest = :windows
2016
config.windows.halt_timeout = 15
2117

22-
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
18+
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
2319

2420
config.vm.provider :virtualbox do |v, override|
2521
#v.gui = true
2622
v.customize ["modifyvm", :id, "--memory", 2048]
2723
v.customize ["modifyvm", :id, "--cpus", 2]
24+
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
2825
end
2926

3027
config.vm.provider :vmware_fusion do |v, override|
3128
#v.gui = true
3229
v.vmx["memsize"] = "2048"
30+
v.vmx["numvcpus"] = "2"
3331
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
3432
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
3533
v.vmx["RemoteDisplay.vnc.port"] = "5900"
@@ -39,6 +37,7 @@ Vagrant.configure("2") do |config|
3937
config.vm.provider :vmware_workstation do |v, override|
4038
#v.gui = true
4139
v.vmx["memsize"] = "2048"
40+
v.vmx["numvcpus"] = "2"
4241
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
4342
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
4443
v.vmx["RemoteDisplay.vnc.port"] = "5900"

vagrantfile-windows_2012_r2.template

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4+
Vagrant.require_version ">= 1.6.2"
5+
46
Vagrant.configure("2") do |config|
57
config.vm.define "vagrant-windows-2012-r2"
68
config.vm.box = "windows_2012_r2"
7-
8-
if !Vagrant.has_plugin?('vagrant-windows')
9-
puts "vagrant-windows missing, please install the vagrant-windows plugin!"
10-
puts "Run this command in your terminal:"
11-
puts "vagrant plugin install vagrant-windows"
12-
exit 1
13-
end
9+
config.vm.communicator = "winrm"
1410

1511
# Admin user name and password
1612
config.winrm.username = "vagrant"
@@ -19,17 +15,19 @@ Vagrant.configure("2") do |config|
1915
config.vm.guest = :windows
2016
config.windows.halt_timeout = 15
2117

22-
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
18+
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
2319

2420
config.vm.provider :virtualbox do |v, override|
2521
#v.gui = true
2622
v.customize ["modifyvm", :id, "--memory", 2048]
2723
v.customize ["modifyvm", :id, "--cpus", 2]
24+
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
2825
end
2926

3027
config.vm.provider :vmware_fusion do |v, override|
3128
#v.gui = true
3229
v.vmx["memsize"] = "2048"
30+
v.vmx["numvcpus"] = "2"
3331
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
3432
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
3533
v.vmx["RemoteDisplay.vnc.port"] = "5900"
@@ -39,6 +37,7 @@ Vagrant.configure("2") do |config|
3937
config.vm.provider :vmware_workstation do |v, override|
4038
#v.gui = true
4139
v.vmx["memsize"] = "2048"
40+
v.vmx["numvcpus"] = "2"
4241
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
4342
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
4443
v.vmx["RemoteDisplay.vnc.port"] = "5900"

vagrantfile-windows_7.template

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4+
Vagrant.require_version ">= 1.6.2"
5+
46
Vagrant.configure("2") do |config|
57
config.vm.define "vagrant-windows-7"
68
config.vm.box = "windows_7"
7-
8-
if !Vagrant.has_plugin?('vagrant-windows')
9-
puts "vagrant-windows missing, please install the vagrant-windows plugin!"
10-
puts "Run this command in your terminal:"
11-
puts "vagrant plugin install vagrant-windows"
12-
exit 1
13-
end
9+
config.vm.communicator = "winrm"
1410

1511
# Admin user name and password
1612
config.winrm.username = "vagrant"
@@ -19,17 +15,19 @@ Vagrant.configure("2") do |config|
1915
config.vm.guest = :windows
2016
config.windows.halt_timeout = 15
2117

22-
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
18+
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
2319

2420
config.vm.provider :virtualbox do |v, override|
2521
#v.gui = true
2622
v.customize ["modifyvm", :id, "--memory", 2048]
2723
v.customize ["modifyvm", :id, "--cpus", 2]
24+
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
2825
end
2926

3027
config.vm.provider :vmware_fusion do |v, override|
3128
#v.gui = true
3229
v.vmx["memsize"] = "2048"
30+
v.vmx["numvcpus"] = "2"
3331
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
3432
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
3533
v.vmx["RemoteDisplay.vnc.port"] = "5900"
@@ -39,6 +37,7 @@ Vagrant.configure("2") do |config|
3937
config.vm.provider :vmware_workstation do |v, override|
4038
#v.gui = true
4139
v.vmx["memsize"] = "2048"
40+
v.vmx["numvcpus"] = "2"
4241
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
4342
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
4443
v.vmx["RemoteDisplay.vnc.port"] = "5900"

vagrantfile-windows_81.template

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4+
Vagrant.require_version ">= 1.6.2"
5+
46
Vagrant.configure("2") do |config|
57
config.vm.define "vagrant-windows-81"
68
config.vm.box = "windows_81"
7-
8-
if !Vagrant.has_plugin?('vagrant-windows')
9-
puts "vagrant-windows missing, please install the vagrant-windows plugin!"
10-
puts "Run this command in your terminal:"
11-
puts "vagrant plugin install vagrant-windows"
12-
exit 1
13-
end
9+
config.vm.communicator = "winrm"
1410

1511
# Admin user name and password
1612
config.winrm.username = "vagrant"
@@ -19,17 +15,19 @@ Vagrant.configure("2") do |config|
1915
config.vm.guest = :windows
2016
config.windows.halt_timeout = 15
2117

22-
config.vm.network :forwarded_port, guest: 5985, host: 5985, id: "winrm", auto_correct: true
18+
config.vm.network :forwarded_port, guest: 3389, host: 3389, id: "rdp", auto_correct: true
2319

2420
config.vm.provider :virtualbox do |v, override|
2521
#v.gui = true
2622
v.customize ["modifyvm", :id, "--memory", 2048]
2723
v.customize ["modifyvm", :id, "--cpus", 2]
24+
v.customize ["setextradata", "global", "GUI/SuppressMessages", "all" ]
2825
end
2926

3027
config.vm.provider :vmware_fusion do |v, override|
3128
#v.gui = true
3229
v.vmx["memsize"] = "2048"
30+
v.vmx["numvcpus"] = "2"
3331
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
3432
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
3533
v.vmx["RemoteDisplay.vnc.port"] = "5900"
@@ -39,6 +37,7 @@ Vagrant.configure("2") do |config|
3937
config.vm.provider :vmware_workstation do |v, override|
4038
#v.gui = true
4139
v.vmx["memsize"] = "2048"
40+
v.vmx["numvcpus"] = "2"
4241
v.vmx["ethernet0.virtualDev"] = "vmxnet3"
4342
v.vmx["RemoteDisplay.vnc.enabled"] = "false"
4443
v.vmx["RemoteDisplay.vnc.port"] = "5900"

0 commit comments

Comments
 (0)