diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-11-10 16:58:02 +0000 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-11-10 16:58:02 +0000 |
commit | 139fc8ae74c5019003e1b4fa350240f8e9fedebc (patch) | |
tree | 105f82ae90082dfa16b94a4b200e37570e712453 /bin/mauveconsole | |
parent | e272804ec875ab1562a5ecc3f58bcaf135fe6fbb (diff) |
Changed mauve config to allow including directory and filenames.
Diffstat (limited to 'bin/mauveconsole')
-rw-r--r-- | bin/mauveconsole | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/mauveconsole b/bin/mauveconsole index 169ca54..211eaab 100644 --- a/bin/mauveconsole +++ b/bin/mauveconsole @@ -89,7 +89,6 @@ require 'pp' def error(msg) logger = Log4r::Logger['Mauve'] - logger.error logger.error "*** Error: #{msg}" logger.error "*** For help, type: #{$0} -h" @@ -139,7 +138,9 @@ module Mauve end begin - Mauve::Configuration.current = Mauve::ConfigurationBuilder.load(configuration_file) + builder = Mauve::ConfigurationBuilder.new + builder.include_file(configuration_file) + Mauve::Configuration.current = builder.result Mauve::Server.instance.setup rescue StandardError => ex error ex |