~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/mailman/runmailman.py

  • Committer: Curtis Hovey
  • Date: 2011-12-29 05:29:36 UTC
  • mto: This revision was merged to the branch mainline in revision 14606.
  • Revision ID: curtis.hovey@canonical.com-20111229052936-c261pibg1p6ze6m4
Moved canonical.config to lp.services.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    :raises RuntimeError: when quiet is True and the command failed.
35
35
    """
36
36
    if config is None:
37
 
        config = canonical.config.config
 
37
        config = lp.services.config.config
38
38
    mailman_path = configure_prefix(config.mailman.build_prefix)
39
39
    mailman_bin = os.path.join(mailman_path, 'bin')
40
40
    args = ['./mailmanctl']
67
67
    # master watcher, and probably one of its queue runners, did not die.
68
68
    # Kill it hard and clean up after it.
69
69
    if config is None:
70
 
        config = canonical.config.config
 
70
        config = lp.services.config.config
71
71
    mailman_path = configure_prefix(config.mailman.build_prefix)
72
72
    master_pid_path = os.path.join(mailman_path, 'data', 'master-qrunner.pid')
73
73
    try:
113
113
    :raises RuntimeException: when Mailman fails to start successfully.
114
114
    """
115
115
    if config is None:
116
 
        config = canonical.config.config
 
116
        config = lp.services.config.config
117
117
    # We need the Mailman bin directory so we can run some of Mailman's
118
118
    # command line scripts.
119
119
    mailman_path = configure_prefix(config.mailman.build_prefix)