summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-02-03 15:42:51 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-02-03 15:42:51 -0800
commite12856b46874a17f5240d26c458dea09ed6fed2b (patch)
tree696b15fff50ea644c42366d737076ef36d06b29e
parent49864217cbbb7787deadb8548bbfe26f93c79a0d (diff)
downloadchef-lcg/chef-sugar-virtualization-backport.tar.gz
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rw-r--r--chef-utils/README.md18
1 files changed, 12 insertions, 6 deletions
diff --git a/chef-utils/README.md b/chef-utils/README.md
index ae4dd14e51..96edf98b94 100644
--- a/chef-utils/README.md
+++ b/chef-utils/README.md
@@ -135,12 +135,18 @@ Architecture Helpers allow you to determine the processor architecture of your n
### Virtualization Helpers
-* `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)
+* `kvm?` - if the node is a kvm guest
+* `kvm_host?` - if the node is a kvm host
+* `lxc?` - if the node is an lxc guest
+* `lxc_host?` - if the node is an lxc host
+* `parallels?`- if the node is a parallels guest
+* `parallels_host?`- if the node is a parallels host
+* `vbox?` - if the node is a virtualbox guest
+* `vbox_host?` - if the node is a virtualbox host
+* `vmware?` - if the node is a vmware guest
+* `vmware_host?` - if the node is a vmware host
+* `openvz?` - if the node is an openvz guest
+* `openvz_host?` - if the node is an openvz 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?`