Fixed tftp server datadir group
This commit is contained in:
parent
a472f94460
commit
b70e9c2674
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,10 @@ class tftp::server {
|
||||||
ensure => directory,
|
ensure => directory,
|
||||||
mode => 0755,
|
mode => 0755,
|
||||||
owner => root,
|
owner => root,
|
||||||
group => root,
|
group => $operatingsystem ? {
|
||||||
|
openbsd => "wheel",
|
||||||
|
default => "root",
|
||||||
|
},
|
||||||
seltype => "tftpdir_t",
|
seltype => "tftpdir_t",
|
||||||
}
|
}
|
||||||
file { "/srv/tftpboot":
|
file { "/srv/tftpboot":
|
||||||
|
|
Loading…
Add table
Reference in a new issue