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 #62 from jacobbednarz/bump-default-version-to-1.7.4
Browse files Browse the repository at this point in the history
Bumps default version to 1.7.4
  • Loading branch information
jhaals committed Jul 20, 2015
2 parents e65f294 + 6248241 commit 445f3aa
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.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:
By default, the module will install Vagrant 1.7.4. 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.7.2',
$version = '1.7.4',
$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.7.2').with({
it { should contain_package('Vagrant_1.7.4').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.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_1.7.4')}
it { should contain_package('Vagrant_1.7.4').with_source('https://dl.bintray.com/mitchellh/vagrant/vagrant_1.7.4.dmg')}
it { should contain_package('vagrant-completion').with_provider('homebrew')}
end

Expand Down

0 comments on commit 445f3aa

Please sign in to comment.