~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/scripts/utilities/killservice.py

  • Committer: William Grant
  • Date: 2011-12-30 08:13:14 UTC
  • mto: This revision was merged to the branch mainline in revision 14611.
  • Revision ID: william.grant@canonical.com-20111230081314-f73f4ozgkzdi5xqb
More stuff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import time
18
18
 
19
19
from lp.services.config import config
 
20
from lp.services.mailman.runmailman import stop_mailman
 
21
from lp.services.pidfile import (
 
22
    get_pid,
 
23
    pidfile_path,
 
24
    remove_pidfile,
 
25
    )
20
26
from lp.services.scripts import (
21
27
    logger,
22
28
    logger_options,
23
29
    )
24
 
from canonical.lazr.pidfile import (
25
 
    get_pid,
26
 
    pidfile_path,
27
 
    remove_pidfile,
28
 
    )
29
 
from lp.services.mailman.runmailman import stop_mailman
30
30
 
31
31
 
32
32
def main():