summaryrefslogtreecommitdiff
path: root/puppet/modules/site_config/manifests/packages/build_essential.pp
blob: 8f3b2641fd13cf4abe94986d5bf5d0f514105123 (plain)
1
2
3
4
5
6
7
8
9
10
11
#
# include this whenever you want to ensure build-essential package and related compilers are installed.
#
class site_config::packages::build_essential {
  if !defined(Package['build-essential']) {
    package {
      ['build-essential', 'cpp']:
        ensure => present
    }
  }
}