diff -r eb0545ec03e7 -r 00907acd732a fixbot/tap.py --- a/fixbot/tap.py Sat Nov 06 16:01:42 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -from twisted.python import usage - -import nexus - -class NexusOptions (usage.Options) : - optParameters = [ - ( "uid", "u", "fixbot", "user to run as" ), - ( "gid", "g", "nogroup", "group to run as" ), - ( "irc-hostname", "s", "irc.fixme.fi", "IRC server hostname", ), - ( "irc-port", "p", 6667, "IRC server port", int ), - ( "irc-nickname", "n", "FixBotDev", "IRC nickname", ), - ( "irc-username", "U", "fixbot", "IRC username", ), - ( "irc-channel", "c", "#fixme-test", "IRC channel", ), - ( "api-listen" "l", "127.0.0.1", "address for API server to listen on" ), - ( "api-port", "P", 34888, "port for API server to listen on", int ), - ] - - optFlags = [ - - ] - -def makeService (config) : - # app = service.Application('fixbot', uid=config['uid'], gid=config['gid']) - return nexus.makeService(config) -