diff options
author | makefu <github@syntax-fehler.de> | 2014-03-25 22:25:08 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2014-03-25 22:25:08 +0100 |
commit | 03d8dd28aaaf10aa25fb9c5b2ee22c8ba5798d3c (patch) | |
tree | 3e8c255eec6dd1a658fcc59c394fff67b78d11d7 /filehooker/root-image/krebs/etc/Reaktor | |
parent | c6c488bba8dc6735bb48d85c9bd43f6f33bce773 (diff) |
add reaktor secret
Diffstat (limited to 'filehooker/root-image/krebs/etc/Reaktor')
-rw-r--r-- | filehooker/root-image/krebs/etc/Reaktor/config.py | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/filehooker/root-image/krebs/etc/Reaktor/config.py b/filehooker/root-image/krebs/etc/Reaktor/config.py index 385c837d..625494cc 100644 --- a/filehooker/root-image/krebs/etc/Reaktor/config.py +++ b/filehooker/root-image/krebs/etc/Reaktor/config.py @@ -9,23 +9,26 @@ irc_hammer_interval = 10 irc_kill_timeout = 360 irc_nickname = name irc_server = 'irc.freenode.org' +irc_restart_timeout = 5 irc_port = 6667 irc_channels = [ '#filehooker' ] +admin_file='admin.lst' +auth_file='auth.lst' + def default_command(cmd): return { 'capname': cmd, 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P<args>.*))?$', 'argv': [ 'commands/' + cmd ] } -commands = [ +public_commands = [ default_command('caps'), default_command('hello'), default_command('reload'), - default_command('refresh_shares'), - default_command('ftpget'), + default_command('search'), default_command('list_downloads'), default_command('badcommand'), default_command('rev'), @@ -38,5 +41,17 @@ commands = [ 'argv': [ 'commands/respond','You are made of stupid!'] }, # "highlight" { 'pattern': '.*\\b' + name + '\\b.*', - 'argv': [ 'commands/say', 'I\'m famous' ] } + 'argv': [ 'commands/say', 'I\'m famous' ] }, + # identify via direct connect + { 'capname': 'identify', + 'pattern': 'identify' + '\\s*(?:\\s+(?P<args>.*))?$', + 'argv' : [ 'commands/identify' ]} + +] + +commands = [ + default_command('reload'), + default_command('update-search'), + default_command('refresh_shares'), + default_command('ftpget') ] |