~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to stop-loggerhead

  • Committer: Guillermo Gonzalez
  • Date: 2008-09-26 12:48:00 UTC
  • mfrom: (217.2.2 logging)
  • mto: This revision was merged to the branch mainline in revision 226.
  • Revision ID: guillo.gonzo@gmail.com-20080926124800-7pjmc08s1da0cxg8
 merge with mwhudson logging branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
default_pidfile = os.path.join(home, 'loggerhead.pid')
24
24
parser = OptionParser(usage='usage: %prog [options]', version='%prog')
25
25
parser.add_option('-p', '--pidfile', dest="pidfile", default=default_pidfile,
26
 
                  help="override pidfile location")
 
26
                                  help="override pidfile location")
27
27
 
28
28
options, args = parser.parse_args()
29
29
if len(args) > 0:
30
 
    parser.error('No filename arguments are used, only options.')
 
30
        parser.error('No filename arguments are used, only options.')
31
31
 
32
32
try:
33
33
    f = open(options.pidfile, 'r')
44
44
    sys.exit(1)
45
45
 
46
46
print
47
 
print 'Shutting down previous server @ pid %d.' % pid
 
47
print 'Shutting down previous server @ pid %d.' % (pid,)
48
48
print
49
49
 
50
50
import signal