Support Puppet v4.3.0

Requires upgrade to ghoneycutt/common v1.4.1
This commit is contained in:
Garrett Honeycutt 2015-12-15 16:11:11 -05:00
parent c487d6d8a8
commit d098df02e3
4 changed files with 9 additions and 5 deletions

View File

@ -5,7 +5,7 @@ fixtures:
ref: '4.6.0' ref: '4.6.0'
common: common:
repo: 'https://github.com/ghoneycutt/puppet-module-common.git' repo: 'https://github.com/ghoneycutt/puppet-module-common.git'
ref: 'v1.3.0' ref: 'v1.4.1'
firewall: firewall:
repo: 'https://github.com/puppetlabs/puppetlabs-firewall.git' repo: 'https://github.com/puppetlabs/puppetlabs-firewall.git'
ref: '0.2.1' ref: '0.2.1'

View File

@ -17,11 +17,13 @@ env:
- PUPPET_GEM_VERSION="~> 3.6.0" - PUPPET_GEM_VERSION="~> 3.6.0"
- PUPPET_GEM_VERSION="~> 3.7.0" - PUPPET_GEM_VERSION="~> 3.7.0"
- PUPPET_GEM_VERSION="~> 3.8.0" - PUPPET_GEM_VERSION="~> 3.8.0"
- PUPPET_GEM_VERSION="~> 3" PARSER="future" - PUPPET_GEM_VERSION="~> 3" FUTURE_PARSER="yes"
- PUPPET_GEM_VERSION="~> 4.0.0" - PUPPET_GEM_VERSION="~> 4.0.0"
- PUPPET_GEM_VERSION="~> 4.1.0" - PUPPET_GEM_VERSION="~> 4.1.0"
- PUPPET_GEM_VERSION="~> 4.2.0" - PUPPET_GEM_VERSION="~> 4.2.0"
- PUPPET_GEM_VERSION="~> 4.3.0"
- PUPPET_GEM_VERSION="~> 4" - PUPPET_GEM_VERSION="~> 4"
- PUPPET_GEM_VERSION="~> 4" STRICT_VARIABLES="yes"
sudo: false sudo: false
@ -46,8 +48,12 @@ matrix:
env: PUPPET_GEM_VERSION="~> 4.1.0" env: PUPPET_GEM_VERSION="~> 4.1.0"
- rvm: 1.8.7 - rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 4.2.0" env: PUPPET_GEM_VERSION="~> 4.2.0"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 4.3.0"
- rvm: 1.8.7 - rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 4" env: PUPPET_GEM_VERSION="~> 4"
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 4" STRICT_VARIABLES="yes"
notifications: notifications:
email: false email: false

View File

@ -88,7 +88,7 @@
"description": "Manage SSH", "description": "Manage SSH",
"dependencies": [ "dependencies": [
{"name":"puppetlabs/stdlib","version_requirement":">= 4.6.0 < 6.0.0"}, {"name":"puppetlabs/stdlib","version_requirement":">= 4.6.0 < 6.0.0"},
{"name":"ghoneycutt/common","version_requirement":">= 1.3.0 < 2.0.0"}, {"name":"ghoneycutt/common","version_requirement":">= 1.4.1 < 2.0.0"},
{"name":"puppetlabs/firewall","version_requirement":">= 0.2.1 < 2.0.0"} {"name":"puppetlabs/firewall","version_requirement":">= 0.2.1 < 2.0.0"}
] ]
} }

View File

@ -9,7 +9,5 @@ RSpec.configure do |config|
# Facter.collection.loader.load(:ipaddress) # Facter.collection.loader.load(:ipaddress)
Facter.clear Facter.clear
Facter.clear_messages Facter.clear_messages
Puppet[:parser] = 'future' if ENV['FUTURE_PARSER'] == 'yes'
end end
end end