Forge Home

vmwaretools

Install VMware Tools Operating System Specific Packages (OSP) on VMware guests.

919,978 downloads

63,969 latest version

3.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 6.1.0 (latest)
  • 6.0.0
  • 5.1.0
  • 5.0.1
  • 5.0.0
  • 4.9.0
  • 4.8.1
  • 4.8.0
  • 4.7.0
  • 4.6.0
  • 4.5.0
  • 4.4.1
  • 4.3.0
  • 4.2.0
  • 4.1.2
  • 4.1.1
  • 4.1.0
  • 4.0.2
  • 4.0.1
  • 4.0.0
  • 3.0.1
  • 3.0.0
  • 2.0.0 (deleted)
  • 1.0.0 (deleted)
released Apr 6th 2015
This version is compatible with:
  • Puppet Enterprise 3.x
  • Puppet >=2.7.20 <4.0.0
  • , , , , ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'razorsedge-vmwaretools', '4.9.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add razorsedge-vmwaretools
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install razorsedge-vmwaretools --version 4.9.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

razorsedge/vmwaretools — version 4.9.0 Apr 6th 2015

Puppet VMware Tools OSP Module

master branch: Build Status develop branch: Build Status

Introduction

This module manages the installation of the Operating System Specific Packages for VMware Tools. This allows you to use your operating system's native tools to install and update the VMware Tools.

Actions:

  • Removes old VMwareTools package or runs vmware-uninstall-tools.pl if found.
  • Installs a VMware YUM repository (defaults to the 'latest' package repository).
  • Installs the OSP VMware Tools.
  • Starts the vmware-tools service.

OS Support:

  • RedHat family - tested on CentOS 5.5+, CentOS 6.2+, RHEL 5.9, RHEL 6.4, and OEL 5.5+
  • SuSE family - tested on SLES 11.1
  • Ubuntu - tested on Ubuntu 12.04 Precise

Class documentation is available via puppetdoc.

Examples

Top Scope variable (i.e. via Dashboard):

$vmwaretools_tools_version = '4.1'
$vmwaretools_autoupgrade = true
include 'vmwaretools'

Parameterized Class:

class { 'vmwaretools':
  tools_version => '4.0u3',
  autoupgrade   => true,
}

Mirror packages.vmware.com to a local host and point the vmwaretools class at it.

class { 'vmwaretools':
  yum_server            => 'http://yumserver.example.lan',
  yum_path              => '/yumdir/v2.3.0',
  just_prepend_yum_path => true,
}

Turn off configuration of the software repository so that some other tool (ie RHN Satellite) or class can take care of it.

class { 'vmwaretools':
  manage_repository => false,
}

Notes

  • Only tested on CentOS 5.5+ and CentOS 6.2+ x86_64 with 4.0latest.
  • Not supported on Fedora or Debian as these distros are not supported by the OSP.
  • Not supported on RHEL/CentOS/OEL 7+ or SLES 12 as VMware is recommending open-vm-tools instead.
  • Supports yumrepo proxy, proxy_username, proxy_password, yum priorities, yum repo protection, and using a local mirror for the yum_server and yum_path.
  • Supports not managing the yumrepo configuration via manage_repository => false.
  • No other VM tools (ie Open Virtual Machine Tools) will be supported.

Issues

  • Does not install Desktop (X Window) components.

TODO

  • Support installation of Desktop (X Window) packages.
  • Add logic to handle RHEL5 i386 PAE kernel on OSP 5.0+.

Contributing

Please see DEVELOP.md for contribution information.

License

Please see LICENSE file.

Copyright

Copyright (C) 2012 Mike Arnold mike@razorsedge.org

razorsedge/puppet-vmwaretools on GitHub

razorsedge/vmwaretools on Puppet Forge