]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/apache/manifests/default_confd_files.pp
add Openstack modules to 3rdparty
[dsa-puppet.git] / 3rdparty / modules / apache / manifests / default_confd_files.pp
1 class apache::default_confd_files (
2   $all = true,
3 ) {
4   # The rest of the conf.d/* files only get loaded if we want them
5   if $all {
6     case $::osfamily {
7       'freebsd': {
8         include ::apache::confd::no_accf
9       }
10       default: {
11         # do nothing
12       }
13     }
14   }
15 }