From a2b2b532d5daff0eae1cdbe94f153f98d5f2c081 Mon Sep 17 00:00:00 2001 From: Sebastien Badia Date: Tue, 11 Feb 2014 09:35:49 +0100 Subject: [PATCH] [rakefile] Puppet-lint, ignore quoted boolean (corosync is buggy) --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index 68f41bb5..c8083099 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,11 @@ require 'puppet-lint/tasks/puppet-lint' PuppetLint.configuration.fail_on_warnings = true PuppetLint.configuration.send('disable_80chars') +# for manifest loadbalancer.pp +39 (default value as an array of variables) PuppetLint.configuration.send('disable_class_parameter_defaults') +# For stonith-enabled (it's a string not a bool) +PuppetLint.configuration.send('disable_quoted_booleans') +# Ignore all upstream modules PuppetLint.configuration.ignore_paths = ['spec/fixtures/modules/**/*.pp'] task(:default).clear