summaryrefslogtreecommitdiff
path: root/manifests/command.pp
diff options
context:
space:
mode:
authorJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2009-12-08 13:01:09 -0500
committerJerome Charaoui <jcharaoui@cmaisonneuve.qc.ca>2009-12-08 13:01:09 -0500
commitf0da4e84fb0025e1744677871bb99f30625851d2 (patch)
treeb3f66fb4f5ae9d1a69cbe777fa524a26da759eb4 /manifests/command.pp
parentaa3e5936e2208214aec3700d42587acf4d5742bd (diff)
remove command wrapper (use native type instead) and commands.pp (now in nagios::defaults::commands)
Diffstat (limited to 'manifests/command.pp')
-rw-r--r--manifests/command.pp11
1 files changed, 0 insertions, 11 deletions
diff --git a/manifests/command.pp b/manifests/command.pp
deleted file mode 100644
index 066189c..0000000
--- a/manifests/command.pp
+++ /dev/null
@@ -1,11 +0,0 @@
-# just a wrapper to make the notify more easy
-define nagios::command(
- $ensure = present,
- $command_line
-){
- nagios_command{$name:
- ensure => $ensure,
- command_line => $command_line,
- notify => Service[nagios],
- }
-}