diff options
author | Jan Dittberner <jandd@cacert.org> | 2020-04-30 18:09:56 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2020-04-30 18:09:56 +0200 |
commit | f705bdffc2ff115bd59f1695014409bef66690bd (patch) | |
tree | c62ab747dee982c1d97db63fed0b3a5021727f25 /sitemodules/roles | |
parent | 0b1c8a8a16a99f76276af612b148436fea67bdb7 (diff) | |
download | cacert-puppet-f705bdffc2ff115bd59f1695014409bef66690bd.tar.gz cacert-puppet-f705bdffc2ff115bd59f1695014409bef66690bd.tar.xz cacert-puppet-f705bdffc2ff115bd59f1695014409bef66690bd.zip |
Add role and hiera data for wiki
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/wiki.pp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/wiki.pp b/sitemodules/roles/manifests/wiki.pp new file mode 100644 index 0000000..3e251df --- /dev/null +++ b/sitemodules/roles/manifests/wiki.pp @@ -0,0 +1,28 @@ +# Class: roles::wiki +# ================== +# +# This class defines the wiki role for the MoinMoin wiki. You should assign +# this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::wiki': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2020 Jan Dittberner +# +class roles::wiki { + include profiles::base + include profiles::rsyslog + include profiles::purge_nrpe_agent + include profiles::icinga2_agent +} |