From eff60cfe6dcdfc45fc4e3d9fc158becaaf390efc Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Thu, 20 Jul 2006 17:17:15 +0000 Subject: Add --background option to daemonize the bot --- bin/rbot | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bin/rbot') diff --git a/bin/rbot b/bin/rbot index 14b57d7c..812c44f5 100755 --- a/bin/rbot +++ b/bin/rbot @@ -36,12 +36,16 @@ opts = GetoptLong.new( ["--debug", "-d", GetoptLong::NO_ARGUMENT], ["--help", "-h", GetoptLong::NO_ARGUMENT], ["--trace", "-t", GetoptLong::REQUIRED_ARGUMENT], - ["--version", "-v", GetoptLong::NO_ARGUMENT] + ["--version", "-v", GetoptLong::NO_ARGUMENT], + ["--background", "-b", GetoptLong::NO_ARGUMENT] ) $debug = false +$daemonize = false + opts.each {|opt, arg| $debug = true if(opt == "--debug") + $daemonize = true if(opt == "--background") $opts[opt.sub(/^-+/, "")] = arg } @@ -79,6 +83,7 @@ if ($opts["help"]) puts " -h, --help this message" puts " -v, --version version information" puts " -d, --debug enable debug messages" + puts " -b, --background background (daemonize) the bot" puts "config directory defaults to ~/.rbot" exit 0 end -- cgit v1.2.3