From 6c63187e3352f5685199c3e41800e1d92175c570 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Mon, 10 Oct 2016 19:18:30 +0100 Subject: [PATCH] Add a sabayon class which ensures required tools for providers are installed --- manifests/init.pp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 manifests/init.pp diff --git a/manifests/init.pp b/manifests/init.pp new file mode 100644 index 0000000..aa6687a --- /dev/null +++ b/manifests/init.pp @@ -0,0 +1,15 @@ +# == Class: Sabayon +# +# Installs the tools needed to manage Sabayon hosts using puppet +# +class sabayon { + + # Enman is used to manage SCR repositories + package { + 'enman': + ensure => installed, + catgeory => 'app-admin', + name => 'enman'; + } + +}