Add a sabayon class which ensures required tools for providers are installed
This commit is contained in:
15
manifests/init.pp
Normal file
15
manifests/init.pp
Normal 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';
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user