diff options
| -rw-r--r-- | puppet/manifests/site.pp | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/puppet/manifests/site.pp b/puppet/manifests/site.pp index f012d6c8..ecda4012 100644 --- a/puppet/manifests/site.pp +++ b/puppet/manifests/site.pp @@ -6,6 +6,9 @@ Exec {    path      => '/usr/bin:/usr/sbin/:/bin:/sbin:/usr/local/bin:/usr/local/sbin'  } +Package <| provider == 'apt' |>  { +  install_options => ['--no-install-recommends'], +}  $services = hiera('services', [])  $services_str = join($services, ', ') | 
