-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release v3.0.0 - Transition to Puppet v4
- Loading branch information
1 parent
6dbd7ee
commit 5b57e28
Showing
51 changed files
with
1,005 additions
and
4,859 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,10 @@ | ||
fixtures: | ||
repositories: | ||
firewall: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-firewall.git' | ||
ref: '1.7.1' | ||
inifile: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-inifile.git' | ||
ref: '1.6.0' | ||
stdlib: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-stdlib.git' | ||
ref: '4.6.0' | ||
mysql: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-mysql.git' | ||
ref: '2.0.1-rc1' | ||
passenger: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-passenger.git' | ||
ref: '0.4.1' | ||
apache: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-apache.git' | ||
ref: '0.5.0-rc1' | ||
concat: | ||
repo: 'https://github.com/puppetlabs/puppetlabs-concat.git' | ||
ref: '1.2.5' | ||
common: | ||
repo: 'https://github.com/ghoneycutt/puppet-module-common.git' | ||
ref: 'v1.6.0' | ||
htpasswd: | ||
repo: 'https://github.com/leinaddm/puppet-htpasswd.git' | ||
symlinks: | ||
puppet: "#{source_dir}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
AllCops: | ||
DisplayCopNames: true | ||
DisplayStyleGuide: true | ||
Exclude: | ||
- vendor/**/* | ||
- pkg/**/* | ||
- spec/fixtures/**/* | ||
|
||
# Cop's to ignore | ||
|
||
# With this enabled it suggests a change that will break the Gemfile | ||
Lint/AssignmentInCondition: | ||
Enabled: false | ||
|
||
Metrics/LineLength: | ||
Enabled: false | ||
|
||
# This is a good idea, but does not line up the rest of the lines making it | ||
# harder to read | ||
Style/IndentHash: | ||
Enabled: false | ||
|
||
Style/Next: | ||
Enabled: false | ||
|
||
# If enabled, this cop makes it harder to understand the logic | ||
Style/NonNilCheck: | ||
Enabled: false | ||
|
||
Style/TrailingCommaInLiteral: | ||
Enabled: false | ||
|
||
Style/TrailingCommaInArguments: | ||
Enabled: false | ||
|
||
# Cop's that require ruby >= 1.9 | ||
Style/HashSyntax: | ||
Enabled: false | ||
|
||
Style/BracesAroundHashParameters: | ||
Enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
source 'https://rubygems.org' | ||
source ENV['GEM_SOURCE'] || 'https://rubygems.org' | ||
|
||
if puppetversion = ENV['PUPPET_GEM_VERSION'] | ||
gem 'puppet', puppetversion, :require => false | ||
else | ||
gem 'puppet', :require => false | ||
end | ||
|
||
gem 'metadata-json-lint' | ||
gem 'puppetlabs_spec_helper', '>= 1.1.1' | ||
gem 'facter', '>= 1.7.0' | ||
gem 'puppet-lint', '>= 1.0', '< 3.0' | ||
gem 'puppet-lint-absolute_classname-check' | ||
gem 'puppet-lint-alias-check' | ||
gem 'puppet-lint-empty_string-check' | ||
gem 'puppet-lint-file_ensure-check' | ||
gem 'puppet-lint-file_source_rights-check' | ||
gem 'puppet-lint-leading_zero-check' | ||
gem 'puppet-lint-spaceship_operator_without_tag-check' | ||
gem 'puppet-lint-trailing_comma-check' | ||
gem 'puppet-lint-undef_in_function-check' | ||
gem 'puppet-lint-unquoted_string-check' | ||
gem 'puppet-lint-variable_contains_upcase' | ||
|
||
# rspec must be v2 for ruby 1.8.7 | ||
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9' | ||
gem 'rspec', '~> 2.0' | ||
gem 'rake', '~> 10.0' | ||
end | ||
|
||
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '2.0' | ||
gem 'json', '~> 1.0' | ||
end | ||
gem 'metadata-json-lint', :require => false | ||
gem 'rspec-puppet', :require => false | ||
gem 'rspec-puppet-facts', :require => false | ||
gem 'rubocop', :require => false | ||
gem 'puppetlabs_spec_helper', '>= 1.2.0', :require => false | ||
gem 'facter', '>= 2.0', :require => false | ||
gem 'hiera', '~> 3.0', :require => false | ||
gem 'puppet-lint', '~> 2.0', :require => false | ||
gem 'puppet-lint-absolute_classname-check', :require => false | ||
gem 'puppet-lint-alias-check', :require => false | ||
gem 'puppet-lint-classes_and_types_beginning_with_digits-check', :require => false | ||
gem 'puppet-lint-empty_string-check', :require => false | ||
gem 'puppet-lint-file_ensure-check', :require => false | ||
gem 'puppet-lint-file_source_rights-check', :require => false | ||
gem 'puppet-lint-leading_zero-check', :require => false | ||
gem 'puppet-lint-resource_reference_syntax', :require => false | ||
gem 'puppet-lint-spaceship_operator_without_tag-check', :require => false | ||
gem 'puppet-lint-trailing_comma-check', :require => false | ||
gem 'puppet-lint-undef_in_function-check', :require => false | ||
gem 'puppet-lint-unquoted_string-check', :require => false | ||
gem 'puppet-lint-variable_contains_upcase', :require => false | ||
gem 'puppet-lint-version_comparison-check', :require => false |
Oops, something went wrong.