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

Commit

Permalink
Merge pull request #60 from boxen/vagrant-1.7.2
Browse files Browse the repository at this point in the history
manifests/init: bump vagrant to 1.7.2.
  • Loading branch information
MikeMcQuaid committed Mar 10, 2015
2 parents 6728b7b + 45a1a16 commit e65f294
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Install [Vagrant](http://www.vagrantup.com/) on your Mac.
```puppet
class { 'vagrant': }
```
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:
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:

```puppet
class { 'vagrant':
Expand Down
2 changes: 1 addition & 1 deletion manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# include vagrant

class vagrant(
$version = '1.6.3',
$version = '1.7.2',
$completion = false
) {
validate_bool($completion)
Expand Down
6 changes: 3 additions & 3 deletions spec/classes/vagrant_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
let (:facts) { default_test_facts }

describe 'when not specifiying a version' do
it { should contain_package('Vagrant_1.6.3').with({
it { should contain_package('Vagrant_1.7.2').with({
:ensure => 'installed',
:provider => 'pkgdmg'
})}
Expand All @@ -20,8 +20,8 @@
describe 'when installing bash completion' do
let (:params) {{:completion => true}}

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

Expand Down

0 comments on commit e65f294

Please sign in to comment.