aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/rootd.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2011-01-20 19:59:13 +0000
committerRob Austein <sra@hactrn.net>2011-01-20 19:59:13 +0000
commit7c26e04d89406d7af06d2ad2c951d9d50a797cf0 (patch)
tree95bbb84e3e392043930864c3c8bbfa595b2236a7 /rpkid/rpki/rootd.py
parent257406947dddcad49f9750977b8468fbf68b92f6 (diff)
Generate Python executables during compilation rather than from
./configure. Change (almost) all programs to use rpki.conf instead of separate config files for each program, and add support for ${prefix}/etc/rpki.conf like normal system programs. svn path=/buildtools/make-python-executable.py; revision=3620
Diffstat (limited to 'rpkid/rpki/rootd.py')
-rw-r--r--rpkid/rpki/rootd.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/rpkid/rpki/rootd.py b/rpkid/rpki/rootd.py
index 74674b57..9a8620a1 100644
--- a/rpkid/rpki/rootd.py
+++ b/rpkid/rpki/rootd.py
@@ -5,8 +5,6 @@ rpki.* classes in order to reuse as much code as possible.
Usage: python rootd.py [ { -c | --config } configfile ] [ { -h | --help } ]
-Default configuration file is rootd.conf, override with --config option.
-
$Id$
Copyright (C) 2009--2010 Internet Systems Consortium ("ISC")
@@ -269,7 +267,7 @@ class main(object):
os.environ["TZ"] = "UTC"
time.tzset()
- self.cfg_file = "rootd.conf"
+ self.cfg_file = None
opts, argv = getopt.getopt(sys.argv[1:], "c:dh?", ["config=", "debug", "help"])
for o, a in opts: