diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-08-05 21:00:26 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-08-05 21:00:26 +0200 |
commit | 9da12f5434bb6c59d8285d0083b65d5fd40da7fe (patch) | |
tree | 1b5ac03b1a501d6beeb6ab4c2008889a72619de0 /sitemodules/roles | |
parent | daa151e7d5b62736984b9b337915c44035c4c55b (diff) | |
download | cacert-puppet-9da12f5434bb6c59d8285d0083b65d5fd40da7fe.tar.gz cacert-puppet-9da12f5434bb6c59d8285d0083b65d5fd40da7fe.tar.xz cacert-puppet-9da12f5434bb6c59d8285d0083b65d5fd40da7fe.zip |
Add basic puppet role for email
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/email.pp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/email.pp b/sitemodules/roles/manifests/email.pp new file mode 100644 index 0000000..ea00e28 --- /dev/null +++ b/sitemodules/roles/manifests/email.pp @@ -0,0 +1,27 @@ +# Class: roles::email +# =================== +# +# This class defines the email role for the email server. You should assign +# this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::email': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2019 Jan Dittberner +# +class roles::emailout { + include profiles::base + include profiles::rsyslog + include profiles::icinga2_agent +} |