diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-30 12:04:31 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-30 12:04:31 +0200 |
commit | d2e5c2c644b47c0594df6f280fb243ecbb36b7e1 (patch) | |
tree | 933773bd06dd77bf5361541b1c523cb6bfe8cf69 /sitemodules/roles | |
parent | 255b0f9e3828e50de32d542982284d0ffcb47137 (diff) | |
download | cacert-puppet-d2e5c2c644b47c0594df6f280fb243ecbb36b7e1.tar.gz cacert-puppet-d2e5c2c644b47c0594df6f280fb243ecbb36b7e1.tar.xz cacert-puppet-d2e5c2c644b47c0594df6f280fb243ecbb36b7e1.zip |
Add external monitoring host role and config
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/extmon.pp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/extmon.pp b/sitemodules/roles/manifests/extmon.pp new file mode 100644 index 0000000..2d84303 --- /dev/null +++ b/sitemodules/roles/manifests/extmon.pp @@ -0,0 +1,26 @@ +# Class: roles::extmon +# ==================== +# +# This class defines the extmon role for an external monitoring host. You +# should assign this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::extmon': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2019 Jan Dittberner +# +class roles::puppetmaster { + include profiles::icinga2_agent +} + |