Add specials for FreeBSD and $root_group

This commit is contained in:
Zach Leslie 2014-07-28 11:41:27 -07:00
parent ce933e4abe
commit edf9b54fe2

View file

@ -157,4 +157,9 @@ class nginx::params {
$global_owner = 'root'
$global_group = '0'
$global_mode = '0644'
$root_group = $::operatingsystem ? {
'FreeBSD' => 'wheel',
default => 'root',
}
}