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:44:27 -0800
commit322f76e160a1086b40468df078648b8e5c4505ab (patch)
treec90a0d5275d13584913f8e0517eebc0c4e90dec9
parentb36caa9ad5c0d5d05dd00ec54f808603d6e8138c (diff)
downloadchef-lcg/chef-sugar-virtualization.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 44f5dd114f..976634cb69 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?`