aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystem/monitor/interface.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/subsystem/monitor/interface.pp')
-rw-r--r--manifests/subsystem/monitor/interface.pp14
1 files changed, 14 insertions, 0 deletions
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,
+ }
+}