craigwatson / puppet-vmwaretools

Puppet module for non-OSP VMware Tools Installation

Home Page:http://forge.puppetlabs.com/CraigWatson1987/vmwaretools

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

build-essential is a commonly used package

Aethylred opened this issue · comments

I suggest that declaring the build-essential package group is wrapped in a definition test, e.g.:

  # build-essential package is very common, so check for previous definition
  if ! defined(Package['build-essential']) {
    package{'build-essential':
      ensure => installed,
    }
  }

Awesome, thanks!