diff options
author | Jan Dittberner <jandd@cacert.org> | 2018-04-06 15:51:49 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2018-04-06 15:52:51 +0200 |
commit | aef7d83e5a803c28aae84e9ed0eb9e8679b878b0 (patch) | |
tree | f45f44fbc23c72838ae80ed4e0b9f49dc1e74845 /sitemodules/roles | |
parent | 8b0ef59f10ec4e3b0a635a70aba0fd515767d76a (diff) | |
download | cacert-puppet-aef7d83e5a803c28aae84e9ed0eb9e8679b878b0.tar.gz cacert-puppet-aef7d83e5a803c28aae84e9ed0eb9e8679b878b0.tar.xz cacert-puppet-aef7d83e5a803c28aae84e9ed0eb9e8679b878b0.zip |
Define puppet configuration for bugs
- add new role bugs
- define account information for dirk and wytze
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/bugs.pp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/bugs.pp b/sitemodules/roles/manifests/bugs.pp new file mode 100644 index 0000000..99756a3 --- /dev/null +++ b/sitemodules/roles/manifests/bugs.pp @@ -0,0 +1,27 @@ +# Class: roles::bugs +# ================== +# +# This class defines the bugs role for the mantis bugtracker. You should assign +# this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::bugs': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2018 Jan Dittberner +# +class roles::bugs { + include profiles::base + include profiles::rsyslog + include profiles::nrpe_agent +} |