# HG changeset patch # User Nicolas Chauvat # Date 1369396965 -7200 # Node ID 328c24289253f9fd30ac8ae2aec7e62f73063cff # Parent 506e656b7eef1e70a4c03a8931fd085e797c2b74 [cwctl] rename option no-post-create to no-db-create diff -r 506e656b7eef -r 328c24289253 cwctl.py --- a/cwctl.py Thu Jun 06 16:02:46 2013 +0200 +++ b/cwctl.py Fri May 24 14:02:45 2013 +0200 @@ -365,11 +365,11 @@ ' "list" command. Default to "all-in-one", e.g. an installation ' 'embedding both the RQL repository and the web server.', }), - ('no-post-create', - {'short': 'P', + ('no-db-create', + {'short': 'S', 'action': 'store_true', 'default': False, - 'help': 'do not run post-create tasks (database creation, etc.)', + 'help': 'stop after creation and do not continue with db-create', }), ) @@ -439,7 +439,7 @@ print 'set %s as owner of the data directory' % config['uid'] chown(config.appdatahome, config['uid']) print '\n-> creation done for %s\n' % repr(config.apphome)[1:-1] - if not self.config.no_post_create: + if not self.config.no_db_create: helper.postcreate(self.config.automatic) def _handle_win32(self, config, appid):