diff --git a/arpwatch/manifests/init.pp b/arpwatch/manifests/init.pp new file mode 100644 index 0000000..c4e831b --- /dev/null +++ b/arpwatch/manifests/init.pp @@ -0,0 +1,16 @@ + +# Install arpwatch daemon +# +class arpwatch { + + package { "arpwatch": + ensure => installed, + } + + service { "arpwatch": + ensure => running, + enable => true, + require => Package["arpwatch"], + } + +}