From d09f347afc0a99481673f227f83864d06206add6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 18 Sep 2015 14:17:05 -0300 Subject: Adds nodo::subsystem::monitor::interface --- manifests/subsystem/monitor/interface.pp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 manifests/subsystem/monitor/interface.pp (limited to 'manifests/subsystem/monitor') diff --git a/manifests/subsystem/monitor/interface.pp b/manifests/subsystem/monitor/interface.pp new file mode 100644 index 0000000..102f5b2 --- /dev/null +++ b/manifests/subsystem/monitor/interface.pp @@ -0,0 +1,14 @@ +define nodo::subsystem::monitor::interface( + $ensure = 'present' + $hour = "*", + $minute = "*", +) +{ + cron { "ifcheck-${name}": + command => "/usr/local/sbin/ifcheck ${name}", + user => 'root', + hour => $hour, + minute => $minute, + ensure => $ensure, + } +} -- cgit v1.2.3