summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-09-30 20:05:06 -0700
committerGitHub <noreply@github.com>2021-09-30 20:05:06 -0700
commitaebb5fcf8c002f31dd6869ca996b5b4258099372 (patch)
treede10234ac27edb39f78488068dcd4502c5f015e2
parent92653533b1e8fd9d522e18409f37fb9e07413e98 (diff)
parentb607b88266393d89034d61e925a5b74b86dbfd04 (diff)
downloadchef-aebb5fcf8c002f31dd6869ca996b5b4258099372.tar.gz
Merge pull request #12125 from knightorc/CHEF16-Windows2019-add-ceiling
CHEF16 - Windows2019 - Version ceiling lib/chef/win32/version.rb
-rw-r--r--lib/chef/win32/version.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/win32/version.rb b/lib/chef/win32/version.rb
index fe7a80926b..65cf2fc5f0 100644
--- a/lib/chef/win32/version.rb
+++ b/lib/chef/win32/version.rb
@@ -50,7 +50,7 @@ class Chef
WIN_VERSIONS = {
"Windows Server 2022" => { major: 10, minor: 0, callable: lambda { |product_type, suite_mask, build_number| product_type != VER_NT_WORKSTATION && build_number >= 20348 } },
- "Windows Server 2019" => { major: 10, minor: 0, callable: lambda { |product_type, suite_mask, build_number| product_type != VER_NT_WORKSTATION && build_number >= 17763 } },
+ "Windows Server 2019" => { major: 10, minor: 0, callable: lambda { |product_type, suite_mask, build_number| product_type != VER_NT_WORKSTATION && build_number >= 17763 && build_number < 20348 } },
"Windows 10" => { major: 10, minor: 0, callable: lambda { |product_type, suite_mask, build_number| product_type == VER_NT_WORKSTATION } },
"Windows Server 2016" => { major: 10, minor: 0, callable: lambda { |product_type, suite_mask, build_number| product_type != VER_NT_WORKSTATION && build_number <= 14393 } },
"Windows 8.1" => { major: 6, minor: 3, callable: lambda { |product_type, suite_mask, build_number| product_type == VER_NT_WORKSTATION } },