projects
/
chaosvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial infinished (unfinished).
[chaosvm.git]
/
modules
/
eventcalendar
/
manifests
/
init.pp
1
class eventcalendar {
2
3
include params
4
5
group { 'cal':
6
ensure => present,
7
gid => 20000,
8
system => false,
9
}
10
11
define assigngroups {
12
Common::Users::Account <| title == $name |> {
13
groups +> [ 'cal' ],
14
}
15
}
16
17
assigngroups{$eventcalendar::params::calmgmr:}
18
19
}