~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to services/usrmgt-server

  • Committer: matt.giuca
  • Date: 2009-01-12 00:34:59 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:1073
usrmgt-server: When creating svn repo, now explicitly asks for the exception
    to be thrown up, rather than ignored.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
        repopath = os.path.join(conf.svn_repo_path, 'users', login)
55
55
        logging.debug("Creating user's Subversion repository")
56
 
        common.makeuser.make_svn_repo(repopath, throw_on_error=False)
 
56
        common.makeuser.make_svn_repo(repopath, throw_on_error=True)
57
57
 
58
58
        rebuild_svn_config(props)
59
59
 
60
60
        logging.debug("Adding Subversion authentication")
61
 
        passwd = common.makeuser.make_svn_auth(login, throw_on_error=False)
 
61
        passwd = common.makeuser.make_svn_auth(login, throw_on_error=True)
62
62
        logging.debug("passwd: %s" % passwd)
63
63
 
64
64
        logging.debug("Creating jail")