From 8df2e752c65eed328eec4c40ebedd4c8bd17bea2 Mon Sep 17 00:00:00 2001 From: Matthew Haughton <3flex@users.noreply.github.com> Date: Tue, 9 Dec 2014 12:31:55 -0500 Subject: [PATCH] don't ignore lint errors --- manifests/resource/location.pp | 4 ++-- metadata.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/resource/location.pp b/manifests/resource/location.pp index d66e90f..1ecbd21 100644 --- a/manifests/resource/location.pp +++ b/manifests/resource/location.pp @@ -355,7 +355,7 @@ define nginx::resource::location ( $content_real, template('nginx/vhost/location_footer.erb') ], ''), - order => "${priority}", #lint:ignore:only_variable_string waiting on https://github.com/puppetlabs/puppetlabs-concat/commit/f70881fbfd01c404616e9e4139d98dad78d5a918 + order => $priority, } } @@ -372,7 +372,7 @@ define nginx::resource::location ( $content_real, template('nginx/vhost/location_footer.erb') ], ''), - order => "${ssl_priority}", #lint:ignore:only_variable_string waiting on https://github.com/puppetlabs/puppetlabs-concat/commit/f70881fbfd01c404616e9e4139d98dad78d5a918 + order => $ssl_priority, } } diff --git a/metadata.json b/metadata.json index 9118dd9..ecbecb6 100644 --- a/metadata.json +++ b/metadata.json @@ -11,6 +11,6 @@ "dependencies": [ {"name":"puppetlabs/stdlib","version_requirement":">= 3.0.0 <5.0.0"}, {"name":"puppetlabs/apt","version_requirement":">= 1.0.0 <2.0.0"}, - {"name":"puppetlabs/concat","version_requirement":">= 1.1.0 <2.0.0"} + {"name":"puppetlabs/concat","version_requirement":">= 1.1.1 <2.0.0"} ] }