Initial version of arpwatch module.

This commit is contained in:
Timo Mkinen 2013-04-23 16:36:40 +03:00
parent 78bcee9a50
commit 9daea3e8e1

View file

@ -0,0 +1,16 @@
# Install arpwatch daemon
#
class arpwatch {
package { "arpwatch":
ensure => installed,
}
service { "arpwatch":
ensure => running,
enable => true,
require => Package["arpwatch"],
}
}