forked from letsencrypt/boulder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.py
executable file
·36 lines (29 loc) · 874 Bytes
/
start.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/python2.7 -u
"""
Run a local instance of Boulder for testing purposes.
This runs in non-monolithic mode and requires RabbitMQ on localhost.
Keeps servers alive until ^C. Exit non-zero if any servers fail to
start, or die before ^C.
"""
import errno
import os
import sys
import time
sys.path.append('./test')
import startservers
# Setup issuance hierarchy
startservers.setupHierarchy()
if not startservers.start(race_detection=False, fakeclock=None):
sys.exit(1)
try:
os.wait()
# If we reach here, a child died early. Log what died:
startservers.check()
sys.exit(1)
except KeyboardInterrupt:
print("\nstopping servers.")
except OSError as v:
# Ignore EINTR, which happens when we get SIGTERM or SIGINT (i.e. when
# someone hits Ctrl-C after running docker-compose up or start.py.
if v.errno != errno.EINTR:
raise