Initial version of smolt module.

This commit is contained in:
Timo Mkinen 2010-07-25 18:57:01 +03:00
parent c3fe0ea10e
commit 918e9d9111

24
smolt/manifests/init.pp Normal file
View file

@ -0,0 +1,24 @@
# Install smolt paackage.
#
class smolt::package {
package { "smolt":
ensure => installed,
}
}
# Enable smolt monthly updates.
#
class smolt::client inherits smolt::package {
service { "smolt":
ensure => running,
enable => true,
hasstatus => true,
require => Package["smolt"],
}
}