summaryrefslogtreecommitdiff
path: root/chef-utils/lib/chef-utils/dsl/windows.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-01-17 13:06:08 -0800
committerTim Smith <tsmith84@gmail.com>2020-01-21 14:39:05 -0800
commit77b0b194866b354aa40db6ae734cca2533f7249c (patch)
tree75338bdc657849ef8e105d5cc14c007493951b8b /chef-utils/lib/chef-utils/dsl/windows.rb
parent9fbeef8424592342f29bad37500042405f29fa87 (diff)
downloadchef-77b0b194866b354aa40db6ae734cca2533f7249c.tar.gz
Add windows helpers for install type
I'm placing these in their own helper file since there are going to be more of them and the only commonality is that they're for windows. Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'chef-utils/lib/chef-utils/dsl/windows.rb')
-rw-r--r--chef-utils/lib/chef-utils/dsl/windows.rb58
1 files changed, 58 insertions, 0 deletions
diff --git a/chef-utils/lib/chef-utils/dsl/windows.rb b/chef-utils/lib/chef-utils/dsl/windows.rb
new file mode 100644
index 0000000000..86d8fb00bc
--- /dev/null
+++ b/chef-utils/lib/chef-utils/dsl/windows.rb
@@ -0,0 +1,58 @@
+#
+# Copyright:: Copyright 2020, Chef Software Inc.
+# License:: Apache License, Version 2.0
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+require_relative "../internal"
+
+module ChefUtils
+ module DSL
+ module Windows
+ include Internal
+
+ # Determine if the current node is Windows Server Core.
+ #
+ # @param [Chef::Node] node
+ #
+ # @return [Boolean]
+ #
+ def windows_server_core?(node = __getnode)
+ node["kernel"]["server_core"] == true
+ end
+
+ # Determine if the current node is Windows Workstation
+ #
+ # @param [Chef::Node] node
+ #
+ # @return [Boolean]
+ #
+ def windows_workstation?(node = __getnode)
+ node["kernel"]["product_type"] == "Workstation"
+ end
+
+ # Determine if the current node is Windows Server
+ #
+ # @param [Chef::Node] node
+ #
+ # @return [Boolean]
+ #
+ def windows_server?(node = __getnode)
+ node["kernel"]["product_type"] == "Server"
+ end
+
+ extend self
+ end
+ end
+end