#!/usr/bin/env python # $Id$ # # Copyright (C) 2014 Dragon Research Labs ("DRL") # Portions copyright (C) 2009--2013 Internet Systems Consortium ("ISC") # Portions copyright (C) 2007--2008 American Registry for Internet Numbers ("ARIN") # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notices and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND DRL, ISC, AND ARIN DISCLAIM ALL # WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED # WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DRL, # ISC, OR ARIN BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS # OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, # NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. """ Start servers, using config file to figure out which servers the user wants started. """ import subprocess import os import argparse import sys import time import rpki.config import rpki.autoconf os.environ["TZ"] = "UTC" time.tzset() parser = argparse.ArgumentParser(description = __doc__) parser.add_argument("-c", "--config", help = "override default location of configuration file") parser.add_argument("-d", "--debug", action = "store_true", help = "enable debugging") parser.add_argument("--logdir", default = ".", help = "where to write write log files when debugging") args = parser.parse_args() cfg = rpki.config.parser(args.config, "myrpki") def run(name): # pylint: disable=E1103 cmd = (os.path.join(rpki.autoconf.libexecdir, name), "--config", cfg.filename) if args.debug: proc = subprocess.Popen(cmd + ("--foreground", "--log-stderr"), stdout = open(os.path.join(args.logdir, name + ".log"), "a"), stderr = subprocess.STDOUT) else: proc = subprocess.Popen(cmd) if args.debug and proc.poll() is None: print "Started %s, pid %s" % (name, proc.pid) elif not args.debug and proc.wait() == 0: print "Started %s" % name else: print "Problem starting %s, pid %s" % (name, proc.pid) if cfg.getboolean("start_irdbd", cfg.getboolean("run_rpkid", False)): run("irdbd") if cfg.getboolean("start_rpkid", cfg.getboolean("run_rpkid", False)): run("rpkid") if cfg.getboolean("start_pubd", cfg.getboolean("run_pubd", False)): run("pubd") if cfg.getboolean("start_rootd", cfg.getboolean("run_rootd", False)): run("rootd")