diff --git a/manifests/params/master.pp b/manifests/params/master.pp index 30b4c9e..b745b6a 100644 --- a/manifests/params/master.pp +++ b/manifests/params/master.pp @@ -1,31 +1,34 @@ class munin::params::master { $message = "Unsupported osfamily ${::osfamily}" $graph_strategy = 'cgi' $html_strategy = 'cgi' $node_definitions = '' $collect_nodes = 'enabled' $dbdir = undef $htmldir = undef $logdir = undef $rundir = undef $tls = 'disabled' $tls_certificate = undef $tls_private_key = undef $tls_verify_certificate = 'yes' $extra_config = [] $host_name = $::fqdn case $::osfamily { 'Debian', 'RedHat': { $config_root = '/etc/munin' } 'Solaris': { $config_root = '/opt/local/etc/munin' } + 'FreeBSD': { + $config_root = '/usr/local/etc/munin' + } default: { fail($message) } } }