diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-08-12 23:57:59 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-08-12 23:57:59 +0200 |
commit | 43cbfd814922825dabc73fe483413a8b942f378a (patch) | |
tree | 57b8b61126b86dd4f65360f3e2acf33e81db8034 /sitemodules/roles | |
parent | 038a3dc5d438e7c63ea83a4ed5e68fd7cc883b0a (diff) | |
download | cacert-puppet-43cbfd814922825dabc73fe483413a8b942f378a.tar.gz cacert-puppet-43cbfd814922825dabc73fe483413a8b942f378a.tar.xz cacert-puppet-43cbfd814922825dabc73fe483413a8b942f378a.zip |
Add base configuration for community
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/community.pp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/community.pp b/sitemodules/roles/manifests/community.pp new file mode 100644 index 0000000..306bd9a --- /dev/null +++ b/sitemodules/roles/manifests/community.pp @@ -0,0 +1,27 @@ +# Class: roles::community +# ======================= +# +# This class defines the community role for the community server. You should +# assign this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::community': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2019 Jan Dittberner +# +class roles::community { + include profiles::base + include profiles::rsyslog + include profiles::icinga2_agent +} |