~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-12-31 00:26:32 UTC
  • mfrom: (14606.4.19 apocaremains-2)
  • Revision ID: launchpad@pqm.canonical.com-20111231002632-67fafhhz150cct3b
[r=wgrant][no-qa] Explode canonical.lazr.

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():