From 5fc89477d4c696ac9d9027356795d940c39edb90 Mon Sep 17 00:00:00 2001 From: Arne Teuke Date: Sun, 29 Apr 2018 12:27:18 +0200 Subject: [PATCH] fixes syntax for linting --- manifests/nagios/resources/resource.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/nagios/resources/resource.pp b/manifests/nagios/resources/resource.pp index 0c12652..9994b7f 100644 --- a/manifests/nagios/resources/resource.pp +++ b/manifests/nagios/resources/resource.pp @@ -54,14 +54,14 @@ class cd_nagios::nagios::resources::resource ( cd_nagios::nagios::resources::resource_df { 'user_rule_plugins': ng_user_arg_name => 'user1', ng_user_arg_value => '/usr/lib64/nagios/plugins', - ng_user_arg_comment => "Sets user1 to be the path to the plugins", + ng_user_arg_comment => 'Sets user1 to be the path to the plugins', } # eventhandlers rule cd_nagios::nagios::resources::resource_df { 'user_rule_eventhandlers': ng_user_arg_name => 'user2', ng_user_arg_value => '/usr/lib64/nagios/plugins/eventhandlers', - ng_user_arg_comment => "Sets user2 to be the path to the eventhandlers", + ng_user_arg_comment => 'Sets user2 to be the path to the eventhandlers', } } }