adjust comments/messages for default server change

Default server is process, adjust comments and messages accordingly.

(Bitbake rev: 8ba4d0e98401cdb808f727703913ad8ba87f8e71)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Paul Eggleton 2011-07-22 16:26:18 +01:00 committed by Richard Purdie
parent 638f8ca408
commit bc4aefff98
1 changed files with 3 additions and 3 deletions

View File

@ -172,8 +172,8 @@ Default BBFILES are the .bb files in the current directory.""")
ui_main = get_ui(configuration)
# Server type could be xmlrpc or none currently, if nothing is specified,
# default server would be none
# Server type can be xmlrpc, process or none currently, if nothing is specified,
# the default server is process
if configuration.servertype:
server_type = configuration.servertype
else:
@ -184,7 +184,7 @@ Default BBFILES are the .bb files in the current directory.""")
server = getattr(module, server_type)
except AttributeError:
sys.exit("FATAL: Invalid server type '%s' specified.\n"
"Valid interfaces: xmlrpc, process, none [default]." % servertype)
"Valid interfaces: xmlrpc, process [default], none." % servertype)
# Save a logfile for cooker into the current working directory. When the
# server is daemonized this logfile will be truncated.