summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-02-03 19:50:36 -0800
committerTim Smith <tsmith84@gmail.com>2020-02-05 09:10:47 -0800
commit11421f498a54aa5322a5a49009da32cbf7439696 (patch)
tree2eb94d87a49fa9b81107506028d01a5289a97bb7
parenta99442db693cd80900c81ccb7cb2fd8dcc57d4fb (diff)
downloadchef-11421f498a54aa5322a5a49009da32cbf7439696.tar.gz
Plain metal -> bare-metal
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--chef-utils/README.md2
-rw-r--r--chef-utils/lib/chef-utils/dsl/virtualization.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/chef-utils/README.md b/chef-utils/README.md
index 668739c9c1..e44d4d6937 100644
--- a/chef-utils/README.md
+++ b/chef-utils/README.md
@@ -149,7 +149,7 @@ Architecture Helpers allow you to determine the processor architecture of your n
* `openvz_host?` - if the node is an openvz host
* `guest?` - if the node is detected as any kind of guest
* `hypervisor?` - if the node is detected as being any kind of hypervisor
-* `physical?` - the node is not running as a guest (may be a hypervisor or may be plain metal)
+* `physical?` - the node is not running as a guest (may be a hypervisor or may be bare-metal)
* `vagrant?` - attempts to identify the node as a vagrant guest (this check may be error prone)
### Train Helpers
diff --git a/chef-utils/lib/chef-utils/dsl/virtualization.rb b/chef-utils/lib/chef-utils/dsl/virtualization.rb
index e04805151e..c699b7e5c0 100644
--- a/chef-utils/lib/chef-utils/dsl/virtualization.rb
+++ b/chef-utils/lib/chef-utils/dsl/virtualization.rb
@@ -186,7 +186,7 @@ module ChefUtils
node.dig("virtualization", "role") == "host"
end
- # Determine if the current node is NOT running under any virtualization environment (plain metal or hypervisor on metal)
+ # Determine if the current node is NOT running under any virtualization environment (bare-metal or hypervisor on metal)
#
# @param [Chef::Node] node
# @since 15.8