diff options
author | Jan Dittberner <jandd@cacert.org> | 2020-04-29 21:21:07 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2020-04-29 21:21:07 +0200 |
commit | 3e31621e6e9aa232d3af74a9e1e278accb37fd58 (patch) | |
tree | 6608dec1eb52683d1a514498ac7212579b4e67d6 /sitemodules/roles | |
parent | 26a18f3df37680367c89640f9ee85486ea1afb48 (diff) | |
download | cacert-puppet-3e31621e6e9aa232d3af74a9e1e278accb37fd58.tar.gz cacert-puppet-3e31621e6e9aa232d3af74a9e1e278accb37fd58.tar.xz cacert-puppet-3e31621e6e9aa232d3af74a9e1e278accb37fd58.zip |
Define puppet configuration for blog
- add new role blog
- define account information for dirk and law
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/blog.pp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/blog.pp b/sitemodules/roles/manifests/blog.pp new file mode 100644 index 0000000..032976a --- /dev/null +++ b/sitemodules/roles/manifests/blog.pp @@ -0,0 +1,28 @@ +# Class: roles::blog +# ================== +# +# This class defines the blog role for the Wordpress blog. You should assign +# this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::blog': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2020 Jan Dittberner +# +class roles::blog { + include profiles::base + include profiles::rsyslog + include profiles::purge_nrpe_agent + include profiles::icinga2_agent +} |