summaryrefslogtreecommitdiff
path: root/lib/custodian/settings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r--lib/custodian/settings.rb26
1 files changed, 17 insertions, 9 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb
index 48adcc0..b601d79 100644
--- a/lib/custodian/settings.rb
+++ b/lib/custodian/settings.rb
@@ -54,6 +54,7 @@ module Custodian
val = $2.dup
key.strip!
val.strip!
+
@settings[key] = val
end
end
@@ -125,24 +126,31 @@ module Custodian
#
# When the alerter is "mauve" the target is the destination for the alerts.
#
- def alerter_target
+ def alerter_target( alert )
_load() unless( _loaded? )
+
+ #
+ # Find the alerting method.
+ #
# if we have something setup then use it.
- if ( @settings['alerter_target'] )
- return( @settings['alerter_target'] )
+ if ( @settings["#{alert}_target"] )
+ return( @settings["#{alert}_target"] )
+ else
end
# otherwise per-test defaults.
- case alerter()
- when "smtp":
+ case alert
+ when "smtp":
"root"
- when "mauve":
+ when "mauve":
"alert.bytemark.co.uk"
- when "file":
+ when "file":
"alerts.log"
- else
- nil
+ when "redis":
+ "127.0.0.1:6379"
+ else
+ nil
end
end