Skip to content
This repository was archived by the owner on Dec 2, 2020. It is now read-only.

Commit e65f294

Browse files
committed
Merge pull request #60 from boxen/vagrant-1.7.2
manifests/init: bump vagrant to 1.7.2.
2 parents 6728b7b + 45a1a16 commit e65f294

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Install [Vagrant](http://www.vagrantup.com/) on your Mac.
1111
```puppet
1212
class { 'vagrant': }
1313
```
14-
By default, the module will install Vagrant 1.6.3. You can specify a different version of Vagrant to install (minimum version is 1.4.0 due to download locations). To install Vagrant 1.4.0, you would specify the version as follows:
14+
By default, the module will install Vagrant 1.7.2. You can specify a different version of Vagrant to install (minimum version is 1.4.0 due to download locations). To install Vagrant 1.4.0, you would specify the version as follows:
1515

1616
```puppet
1717
class { 'vagrant':

manifests/init.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# include vagrant
66

77
class vagrant(
8-
$version = '1.6.3',
8+
$version = '1.7.2',
99
$completion = false
1010
) {
1111
validate_bool($completion)

spec/classes/vagrant_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
let (:facts) { default_test_facts }
55

66
describe 'when not specifiying a version' do
7-
it { should contain_package('Vagrant_1.6.3').with({
7+
it { should contain_package('Vagrant_1.7.2').with({
88
:ensure => 'installed',
99
:provider => 'pkgdmg'
1010
})}
@@ -20,8 +20,8 @@
2020
describe 'when installing bash completion' do
2121
let (:params) {{:completion => true}}
2222

23-
it { should contain_package('Vagrant_1.6.3')}
24-
it { should contain_package('Vagrant_1.6.3').with_source('https://dl.bintray.com/mitchellh/vagrant/vagrant_1.6.3.dmg')}
23+
it { should contain_package('Vagrant_1.7.2')}
24+
it { should contain_package('Vagrant_1.7.2').with_source('https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.2.dmg')}
2525
it { should contain_package('vagrant-completion').with_provider('homebrew')}
2626
end
2727

0 commit comments

Comments
 (0)