diff options
author | Jan Dittberner <jandd@cacert.org> | 2020-05-17 08:48:14 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2020-05-17 08:51:00 +0200 |
commit | e19b0451d3f692b11f13657406e818f7fc93c7f8 (patch) | |
tree | f6d4b3b3c9215ea9237bf04a453c198225d64c3b /sitemodules/roles | |
parent | f6909a885108099004e18315e4b8433a9be4ea8d (diff) | |
download | cacert-puppet-e19b0451d3f692b11f13657406e818f7fc93c7f8.tar.gz cacert-puppet-e19b0451d3f692b11f13657406e818f7fc93c7f8.tar.xz cacert-puppet-e19b0451d3f692b11f13657406e818f7fc93c7f8.zip |
Add git container to Puppet
Diffstat (limited to 'sitemodules/roles')
-rw-r--r-- | sitemodules/roles/manifests/git.pp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sitemodules/roles/manifests/git.pp b/sitemodules/roles/manifests/git.pp new file mode 100644 index 0000000..55d81b9 --- /dev/null +++ b/sitemodules/roles/manifests/git.pp @@ -0,0 +1,28 @@ +# Class: roles::git +# ================= +# +# This class defines the git role for the git server. You should assign this +# class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::git': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2020 Jan Dittberner +# +class roles::git { + include profiles::base + include profiles::rsyslog + include profiles::purge_nrpe_agent + include profiles::icinga2_agent +} |