From 326bbd320dbabc075fd7e59e55a715c7d4e9d6b9 Mon Sep 17 00:00:00 2001 From: Patrick J Cherry Date: Tue, 19 Apr 2011 09:37:53 +0100 Subject: * added sane init script for server * mauvesend now handles options better * jabber client has stub message receivng method --- bin/mauveserver | 37 ++++++++----------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) (limited to 'bin/mauveserver') diff --git a/bin/mauveserver b/bin/mauveserver index c576c85..57a2299 100755 --- a/bin/mauveserver +++ b/bin/mauveserver @@ -12,26 +12,18 @@ require 'mauve/configuration' include Mauve configuration_file = ARGV[0] -if configuration_file.nil? - %w(/etc/mauvealert/mauveserver.conf mauveserver.conf).each do |configuration_file| - break if File.exists?(configuration_file) - end -end -unless File.exists?(configuration_file) - if ARGV[0] - STDERR.print "Configuration file #{configuration_file} not found" - else - STDERR.print "Syntax: #{$0} \n" - end - exit 1 +configuration_file = [".", "/etc/mauvealert/"].find{|d| File.file?(File.join(d,"mauveserver.conf")) } if configuration_file.nil? + +configuration_file = File.expand_path(configuration_file) + +unless File.file?(configuration_file) + STDERR.print "Configuration file #{configuration_file} not found" + Kernel.exit 1 end Configuration.current = ConfigurationBuilder.load(configuration_file) -class RestartSignalReceived < Exception; end -class TerminateSignalReceived < Exception; end - %w(HUP).each do |sig| trap("HUP") do # this blows up if you do it twice in quick succession, but don't really @@ -54,18 +46,5 @@ end end end -#begin - Mauve::Server.instance.run -#rescue SystemExit - # Woo! -# exit 0 -#rescue Exception => ex -# [ex.class.to_s, ex.to_s, ex.backtrace.join("\n")].each do |s| -# Configuration.current.logger.fatal s -# warn s -# end -# -# exit 1 -#end -# +Mauve::Server.instance.run -- cgit v1.2.1