diff options
author | Rob Austein <sra@hactrn.net> | 2007-10-30 20:59:10 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-10-30 20:59:10 +0000 |
commit | 3f9fe3537aa58d0ed29eb636487b00a83a562267 (patch) | |
tree | 90540468b0e573b8e018c3e0eb7d2c400d00cae2 /scripts/rpkid.py | |
parent | 52aa9b91f2b1e9591fa21e79c17a93492f8cee87 (diff) |
Config file naming cleanup
svn path=/scripts/rpkid.py; revision=1204
Diffstat (limited to 'scripts/rpkid.py')
-rwxr-xr-x | scripts/rpkid.py | 4 |
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, |