16 lines
216 B
Puppet
16 lines
216 B
Puppet
|
|
# Install APC UPS control (apcupsd).
|
|
#
|
|
class apcupsd {
|
|
|
|
package { "apcupsd":
|
|
ensure => installed,
|
|
}
|
|
|
|
service { "apcupsd":
|
|
ensure => running,
|
|
enable => true,
|
|
require => Package["apcupsd"],
|
|
}
|
|
|
|
}
|