From 742b12212aa785b4d5807a5e2780c99f06ee3fee Mon Sep 17 00:00:00 2001 From: Rasmus Thorslund Date: Fri, 31 May 2024 12:25:04 +0200 Subject: [PATCH] added missing modules --- .../puppet/modules/rut/manifests/infra_ca_rp.pp | 4 ++++ .../etc/puppet/modules/rut/manifests/init.pp | 15 +++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 global/overlay/etc/puppet/modules/rut/manifests/infra_ca_rp.pp create mode 100644 global/overlay/etc/puppet/modules/rut/manifests/init.pp diff --git a/global/overlay/etc/puppet/modules/rut/manifests/infra_ca_rp.pp b/global/overlay/etc/puppet/modules/rut/manifests/infra_ca_rp.pp new file mode 100644 index 0000000..28f76d6 --- /dev/null +++ b/global/overlay/etc/puppet/modules/rut/manifests/infra_ca_rp.pp @@ -0,0 +1,4 @@ +# Everything is awesome! +class rut::infra_ca_rp { + sunet::ici_ca::rp { 'infra': } +} diff --git a/global/overlay/etc/puppet/modules/rut/manifests/init.pp b/global/overlay/etc/puppet/modules/rut/manifests/init.pp new file mode 100644 index 0000000..1a05735 --- /dev/null +++ b/global/overlay/etc/puppet/modules/rut/manifests/init.pp @@ -0,0 +1,15 @@ +class rut { + include sunet::motd + + sunet::ssh_keys { 'rutops': + config => safe_hiera('rutops_ssh_keys', {}) + } + + sunet::ssh_keys { 'sunetops': + config => safe_hiera('sunetops_ssh_keys', {}) + } + + include sunet::rsyslog + include sunet::nagios::nrpe +} +