summaryrefslogtreecommitdiff
path: root/lib/chef/resource
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-06-06 21:48:00 -0700
committerGitHub <noreply@github.com>2018-06-06 21:48:00 -0700
commitc82266fd435d45fabb71cc80ca448c4ed378017a (patch)
tree9d931aaa78a1d8b8d782679a5010416cc545b33b /lib/chef/resource
parent8d6f93805d094cb75148369466589c6b5d762ece (diff)
parent9482bb48e023b7a40101d0788c8732440ca8cd85 (diff)
downloadchef-c82266fd435d45fabb71cc80ca448c4ed378017a.tar.gz
Merge pull request #7259 from Intility/powershell-package-publisher-check
Add skip_publisher_check property to powershell_package
Diffstat (limited to 'lib/chef/resource')
-rw-r--r--lib/chef/resource/powershell_package.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/resource/powershell_package.rb b/lib/chef/resource/powershell_package.rb
index 184b63f950..1056a8011c 100644
--- a/lib/chef/resource/powershell_package.rb
+++ b/lib/chef/resource/powershell_package.rb
@@ -37,6 +37,7 @@ class Chef
property :package_name, [String, Array], coerce: proc { |x| [x].flatten }
property :version, [String, Array], coerce: proc { |x| [x].flatten }
property :source, [String]
+ property :skip_publisher_check, [true, false], default: false, introduced: "14.2", description: "Skip validating module author"
end
end
end