16 lines
271 B
Puppet
16 lines
271 B
Puppet
# Install logwatch.
|
|
#
|
|
class logwatch {
|
|
|
|
case $::kernel {
|
|
"linux": {
|
|
package { "logwatch":
|
|
ensure => installed,
|
|
}
|
|
}
|
|
default: {
|
|
fail("logwatch not supported on ${::kernel}")
|
|
}
|
|
}
|
|
|
|
}
|