aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpkid/rpki/config.py')
-rw-r--r--rpkid/rpki/config.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/rpkid/rpki/config.py b/rpkid/rpki/config.py
index 67364d21..07f6bfe3 100644
--- a/rpkid/rpki/config.py
+++ b/rpkid/rpki/config.py
@@ -46,14 +46,18 @@ class parser(object):
get-methods with default values and default section name.
"""
- def __init__(self, filename, section = None):
+ def __init__(self, filename, section = None, allow_missing = False):
"""
Initialize this parser.
"""
self.filename = filename
self.cfg = ConfigParser.RawConfigParser()
- self.cfg.readfp(open(filename), filename)
+ try:
+ self.cfg.readfp(open(filename), filename)
+ except IOError:
+ if not allow_missing:
+ raise
self.default_section = section
def has_section(self, section):