Import rest of modules.
This commit is contained in:
parent
02fa10f33c
commit
3f225ced9b
39 changed files with 2056 additions and 0 deletions
20
custom/manifests/init.pp
Normal file
20
custom/manifests/init.pp
Normal file
|
@ -0,0 +1,20 @@
|
|||
|
||||
class custom {
|
||||
|
||||
file { "/srv":
|
||||
ensure => directory,
|
||||
mode => 0755,
|
||||
owner => root,
|
||||
group => $operatingsystem ? {
|
||||
OpenBSD => wheel,
|
||||
default => root,
|
||||
},
|
||||
}
|
||||
|
||||
if $kernel == OpenBSD {
|
||||
Service {
|
||||
provider => openbsd,
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue