Initial version of arpwatch module.
This commit is contained in:
parent
78bcee9a50
commit
9daea3e8e1
1 changed files with 16 additions and 0 deletions
16
arpwatch/manifests/init.pp
Normal file
16
arpwatch/manifests/init.pp
Normal file
|
@ -0,0 +1,16 @@
|
|||
|
||||
# Install arpwatch daemon
|
||||
#
|
||||
class arpwatch {
|
||||
|
||||
package { "arpwatch":
|
||||
ensure => installed,
|
||||
}
|
||||
|
||||
service { "arpwatch":
|
||||
ensure => running,
|
||||
enable => true,
|
||||
require => Package["arpwatch"],
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue