Import rest of modules.

This commit is contained in:
Timo Mkinen 2009-08-20 00:24:14 +03:00
parent 02fa10f33c
commit 3f225ced9b
39 changed files with 2056 additions and 0 deletions

14
apcupsd/manifests/init.pp Normal file
View file

@ -0,0 +1,14 @@
class apcupsd {
package { "apcupsd":
ensure => installed,
}
service { "apcupsd":
ensure => running,
enable => true,
require => Package["apcupsd"],
}
}