aboutsummaryrefslogtreecommitdiff
path: root/scripts/rpkid.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-xscripts/rpkid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/rpkid.py b/scripts/rpkid.py
index b26b90d2..206426dd 100755
--- a/scripts/rpkid.py
+++ b/scripts/rpkid.py
@@ -70,7 +70,7 @@ class global_context(object):
os.environ["TZ"] = "UTC"
time.tzset()
-cfg_file = "re.conf"
+cfg_file = "rpkid.conf"
opts,argv = getopt.getopt(sys.argv[1:], "c:h?", ["config=", "help"])
for o,a in opts:
@@ -82,7 +82,7 @@ for o,a in opts:
if argv:
raise RuntimeError, "Unexpected arguments %s" % argv
-gctx = global_context(cfg = rpki.config.parser(cfg_file), section = "rpki")
+gctx = global_context(cfg = rpki.config.parser(cfg_file), section = "rpkid")
rpki.https.server(privateKey = gctx.https_key,
certChain = gctx.https_certs,