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'; + } + +}