summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Magnus Rakvåg <tor.magnus@outlook.com>2019-10-07 19:51:00 +0200
committerTor Magnus Rakvåg <tor.magnus@outlook.com>2019-10-07 19:51:00 +0200
commit87905fd6a95f47e3a6bbdc83aec835b65fe2ee2a (patch)
treeeac800278a92436ff0d86c252f835d6e478b2bc1
parent7a9fe3dcea22b74dbcd69ad7293d8743e5e47919 (diff)
downloadchef-87905fd6a95f47e3a6bbdc83aec835b65fe2ee2a.tar.gz
fix a chefstyle issue
Signed-off-by: Tor Magnus Rakvåg <tor.magnus@outlook.com>
-rw-r--r--lib/chef/resource/windows_firewall_rule.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/windows_firewall_rule.rb b/lib/chef/resource/windows_firewall_rule.rb
index b09c5a5fcd..dedc2f8e2e 100644
--- a/lib/chef/resource/windows_firewall_rule.rb
+++ b/lib/chef/resource/windows_firewall_rule.rb
@@ -74,7 +74,7 @@ class Chef
callbacks: {
"contains values not in :public, :private :domain, :any or :notapplicable" => lambda { |p|
p.all? { |e| %i{public private domain any notapplicable}.include?(e) }
- }
+ },
}
property :program, String,