Add a sabayon class which ensures required tools for providers are installed

This commit is contained in:
2016-10-10 19:18:30 +01:00
parent 294cedb18e
commit 6c63187e33

15
manifests/init.pp Normal file
View File

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