diff -r a2342f26c9de -r b0b56e0f8c7f dev/provisioning/modules/apache/manifests/dev.pp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev/provisioning/modules/apache/manifests/dev.pp Fri Jan 15 15:35:00 2016 +0100 @@ -0,0 +1,10 @@ +class apache::dev { + include ::apache::params + $packages = $::apache::dev_packages + if $packages { # FreeBSD doesn't have dev packages to install + package { $packages: + ensure => present, + require => Package['httpd'], + } + } +}