From e321519dce730b00290d8702a9609d1e0b8d5de2 Mon Sep 17 00:00:00 2001 From: Carlos Camacho Date: Wed, 14 Sep 2016 13:51:03 +0200 Subject: [PATCH] Fix puppet-lint before upgrading gem Removing puppet-lint warnings in favor of upgrading to latest gem 2016-09-13 21:13:01.029817 | manifests/api.pp:221:WARNING: line has more than 140 characters Change-Id: Iff0f9ac6d6de528b8ea2ff01f1bbbf164bde8bfc --- manifests/api.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/api.pp b/manifests/api.pp index bc4a148..455dbac 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -218,7 +218,9 @@ class watcher::api ( if $validate { $defaults = { 'watcher-api' => { + # lint:ignore:140chars 'command' => "watcher --os-auth-url ${watcher_client_auth_url} --os-project-name ${watcher_client_project_name} --os-username ${watcher_client_username} --os-password ${watcher_client_password} goal list", + # lint:endignore } } $validation_options_hash = merge($defaults, $validation_options)