Skip to content

Instantly share code, notes, and snippets.

@arctouch-shadowroldan
Created November 14, 2011 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arctouch-shadowroldan/1365295 to your computer and use it in GitHub Desktop.
Save arctouch-shadowroldan/1365295 to your computer and use it in GitHub Desktop.
a simple vmware tools cookbook
case node[:lsb][:codename]
when "lucid"
unless node['virtualization']['system'].nil?
if node['virtualization']['system'] == 'vmware'
package "linux-headers-virtual" do
action :install
end
package "open-vm-dkms" do
options "--no-install-recommends"
action :install
end
package "open-vm-tools" do
options "--no-install-recommends"
action :install
end
#when vmware
end
#exempt not virtualization
end
# only on lucid
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment