Add missing section to mumo.ini and set a default for the Treename in mbf2man.py

This commit is contained in:
Stefan Hacker 2010-12-24 02:04:06 +01:00
parent dcc436b2d3
commit 6ed695b5c5
2 changed files with 7 additions and 1 deletions

View File

@ -24,6 +24,12 @@ secret =
watchdog = 15
[murmur]
; Comma seperated list of server ids to listen on (empty for all)
; note that if a server isn't listed here no events for it can
; be received in any module
servers =
[modules]
mod_dir = modules/
cfg_dir = modules-enabled/

View File

@ -61,7 +61,7 @@ if __name__ == "__main__":
parser.add_option('-s', '--secret',
help = 'Ice secret', default = '')
parser.add_option('-n', '--name',
help = 'Treename')
help = 'Treename', default = 'BF2')
parser.add_option('-o', '--out', default = 'bf2.ini',
help = 'File to output configuration to')
(option, args) = parser.parse_args()