diff options
-rw-r--r-- | hieradata/nodes/proxyin.yaml | 5 | ||||
-rw-r--r-- | sitemodules/roles/manifests/proxyin.pp | 25 |
2 files changed, 30 insertions, 0 deletions
diff --git a/hieradata/nodes/proxyin.yaml b/hieradata/nodes/proxyin.yaml new file mode 100644 index 0000000..e6131f2 --- /dev/null +++ b/hieradata/nodes/proxyin.yaml @@ -0,0 +1,5 @@ +--- +classes: + - roles::proxyin +profiles::base::admins: + - jandd diff --git a/sitemodules/roles/manifests/proxyin.pp b/sitemodules/roles/manifests/proxyin.pp new file mode 100644 index 0000000..daab60a --- /dev/null +++ b/sitemodules/roles/manifests/proxyin.pp @@ -0,0 +1,25 @@ +# Class: roles::proxyin +# ===================== +# +# This class defines the inproxy role for incoming proxy servers. You should +# assign this class using hiera or via an ENC. +# +# Examples +# -------- +# +# @example +# class { 'roles::proxyin': } +# +# Authors +# ------- +# +# Jan Dittberner <jandd@cacert.org> +# +# Copyright +# --------- +# +# Copyright 2017 Jan Dittberner +# +class roles::proxyin { + include profiles::base +} |