Initial version of logwatch module

This commit is contained in:
Ossi Salmi 2013-02-12 13:10:10 +02:00
parent 4f2b5c724d
commit 9132b47705

View file

@ -0,0 +1,16 @@
# Install logwatch.
#
class logwatch {
case $::kernel {
"linux": {
package { "logwatch":
ensure => installed,
}
}
default: {
fail("logwatch not supported on ${::kernel}")
}
}
}