# HG changeset patch # User Jeff Hammel # Date 1399825800 25200 # Node ID fe009d4322b75dad364142ed071a852fbff03a4e # Parent f6dff9fd3f5bdb7aca2f1cf6259535b395ca7661 fix up template a bit diff -r f6dff9fd3f5b -r fe009d4322b7 autobot/template.py --- a/autobot/template.py Sun May 11 09:16:46 2014 -0700 +++ b/autobot/template.py Sun May 11 09:30:00 2014 -0700 @@ -36,14 +36,14 @@ description = 'template for the autobot buildbot master' templates = [os.path.join('template', 'master')] vars = [Variable('slave', 'buildslave name', 'slave'), - Variable('os', 'buildslave os (win, mac, linux)'), + Variable('os', 'buildslave os (win, mac, linux)', default='linux'), Variable('passwd', 'buildslave password', default='passwd'), Variable('slaveport', 'port to talk to slaves on', default=9010, cast=int), Variable('htmlport', 'port for waterfall display', default=8010, cast=int), Variable('publichtmlport', 'port for public waterfall display', default=8011, cast=int), - Variable('botname', 'name of IRC bot'), - Variable('ircHost', 'IRC host'), - Variable('ircChannels', 'channels for the IRC bot ("-" for none)'), + Variable('botname', 'name of IRC bot', default='autobot'), + Variable('ircHost', 'IRC host', default=''), + Variable('ircChannels', 'channels for the IRC bot ("-" for none)', default='-'), Variable('domain', 'autobot domain name', default='localhost'), Variable('recipients', 'email recipients for all projects', '') ]