summaryrefslogtreecommitdiff
path: root/chef-utils/README.md
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-01-31 16:25:26 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-01-31 16:25:26 -0800
commit569b7910b4ddf37063dd88483500cebbfcd4c18d (patch)
tree328bab1218436b39018d63f58bbec10df2eaa770 /chef-utils/README.md
parent9ce4eb455526074cc88f398a8397e5d2a62443fa (diff)
downloadchef-569b7910b4ddf37063dd88483500cebbfcd4c18d.tar.gz
fixing APIs
these were broken in chef-sugar Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'chef-utils/README.md')
-rw-r--r--chef-utils/README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/chef-utils/README.md b/chef-utils/README.md
index ce62afa64a..44f5dd114f 100644
--- a/chef-utils/README.md
+++ b/chef-utils/README.md
@@ -135,14 +135,15 @@ Architecture Helpers allow you to determine the processor architecture of your n
### Virtualization Helpers
-* `kvm?` - if the node is a kvm guest
-* `lxc?` - if the node is an lxc guest
-* `parallels?`- if the node is a parallels guest
-* `vbox?` - if the node is a virtualbox guest
-* `vmware?` - if the node is a vmware guest
-* `openvz?` - if the node is an openvz guest
-* `virtual?` - if any of the above are true (guest of any detected virtualization system)
-* `physical?` - strictly the logical opposite of `virtual?`
+* `kvm?` - if the node is a kvm (guest or host)
+* `lxc?` - if the node is an lxc (guest or host)
+* `parallels?`- if the node is a parallels (guest or host)
+* `vbox?` - if the node is a virtualbox (guest or host)
+* `vmware?` - if the node is a vmware (guest or host)
+* `openvz?` - if the node is an openvz (guest or host)
+* `guest?` - if the node is detected as any kind of guest
+* `virtual_host?` - if the node is detected as being any kind of virtual host
+* `physical?` - strictly the logical opposite of `guest?`
* `vagrant?` - attempts to identify the node as a vagrant guest (this check may be error prone)
### Train Helpers