Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bodgit committed Oct 1, 2016
1 parent d2ec068 commit 2f6a8f7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,5 @@ matrix:
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
notifications:
email: false
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ group :development, :test do
gem 'puppet-lint-trailing_comma-check', :require => false
gem 'puppet-lint-file_ensure-check', :require => false
gem 'puppet-lint-version_comparison-check', :require => false
gem 'puppet-lint-fileserver-check', :require => false
gem 'puppet-lint-fileserver-check', :require => false, :git => 'https://github.com/bodgit/puppet-lint-fileserver-check.git', :branch => 'puppet-lint-2.x'
gem 'puppet-lint-file_source_rights-check', :require => false
gem 'puppet-lint-alias-check', :require => false
gem 'librarian-puppet', :require => false
gem 'beaker', '>= 2.18.2', :require => false
gem 'beaker', '>= 2.18.2', '< 3.0.0', :require => false
gem 'beaker-rspec', :require => false
gem 'rspec-puppet-facts', '>= 1.1.1', :require => false
gem 'coveralls', :require => false
Expand Down
2 changes: 1 addition & 1 deletion manifests/helper.pp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
) {

if ! defined(Class['::oddjob']) {
fail('You must include the oddjob base class before using any oddjob defined resources') # lint:ignore:80chars
fail('You must include the oddjob base class before using any oddjob defined resources')
}

validate_string($content)
Expand Down
2 changes: 1 addition & 1 deletion manifests/mkhomedir.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
) inherits ::oddjob::params {

if ! defined(Class['::oddjob']) {
fail('You must include the oddjob base class before using the oddjob::mkhomedir class') # lint:ignore:80chars
fail('You must include the oddjob base class before using the oddjob::mkhomedir class')
}

validate_string($package_name)
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
$service_name = 'oddjobd'
}
default: {
fail("The ${module_name} module is not supported on an ${::osfamily} based system.") # lint:ignore:80chars
fail("The ${module_name} module is not supported on an ${::osfamily} based system.")
}
}
}

0 comments on commit 2f6a8f7

Please sign in to comment.