Integration With Chef/Ohai
If you're using Chef to provision your Parallels virtual machines or host systems running Parallels Desktop, you can check in the recipe that the type of system virtualization being used is virtualization from Parallels. To do this, use the node['virtualization'] attribute. This attribute is set by Ohai during the chef-client run.
You will see the following in the host system:
"virtualization": {
"systems": {
"parallels": "host"
},
"system": "parallels",
"role": "host"
And the following in the guest system:
"virtualization": {
"systems": {
"parallels": "guest"
},
"system": "parallels",
"role": "guest"
}