Use inherits keyword to bring puppetboard::params into scope Use 2>&1 in install_modules to silence warnings Set puppetdb class to open port 80 when puppetboard is used Remove inherits from params check from puppet lint Change-Id: I75fc35542e9f2641bcab613d7e1aef83d9300217
		
			
				
	
	
		
			10 lines
		
	
	
		
			429 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			429 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
require 'rubygems'
 | 
						|
require 'puppetlabs_spec_helper/rake_tasks'
 | 
						|
require 'puppet-lint/tasks/puppet-lint'
 | 
						|
PuppetLint.configuration.fail_on_warnings = true
 | 
						|
PuppetLint.configuration.send('disable_80chars')
 | 
						|
PuppetLint.configuration.send('disable_class_inherits_from_params_class')
 | 
						|
 | 
						|
# Disable check due to upstream bug: https://github.com/rodjek/puppet-lint/issues/170 
 | 
						|
PuppetLint.configuration.send('disable_class_parameter_defaults')
 |