summaryrefslogtreecommitdiff
path: root/lib/chef/resource/msu_package.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/msu_package.rb')
-rw-r--r--lib/chef/resource/msu_package.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/chef/resource/msu_package.rb b/lib/chef/resource/msu_package.rb
index 628af49184..75515b4f78 100644
--- a/lib/chef/resource/msu_package.rb
+++ b/lib/chef/resource/msu_package.rb
@@ -34,13 +34,13 @@ class Chef
default_action :install
property :source, String,
- description: "The local file path or URL for the MSU package.",
- coerce: (proc do |s|
- unless s.nil?
- uri_scheme?(s) ? s : Chef::Util::PathHelper.canonical_path(s, false)
- end
- end),
- default: lazy { |r| r.package_name }
+ description: "The local file path or URL for the MSU package.",
+ coerce: (proc do |s|
+ unless s.nil?
+ uri_scheme?(s) ? s : Chef::Util::PathHelper.canonical_path(s, false)
+ end
+ end),
+ default: lazy { |r| r.package_name }
property :checksum, String, desired_state: false,
description: "SHA-256 digest used to verify the checksum of the downloaded MSU package."