mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix named.conf named_conf_include_re
Actually match one or more characters Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
parent
cddd07f68a
commit
996a220900
@ -81,7 +81,7 @@ named_conf_arg_options_re_nonstr = re.compile(
|
||||
r'(?P<indent>\s*)(?P<name>\S+)\s+(?P<value>[^"]+)\s*;')
|
||||
named_conf_arg_options_template_nonstr = "%(indent)s%(name)s %(value)s;\n"
|
||||
# include directive
|
||||
named_conf_include_re = re.compile(r'\s*include\s+"(?P<path>)"\s*;')
|
||||
named_conf_include_re = re.compile(r'\s*include\s+"(?P<path>.*)"\s*;')
|
||||
named_conf_include_template = "include \"%(path)s\";\n"
|
||||
|
||||
NAMED_SECTION_OPTIONS = "options"
|
||||
|
Loading…
Reference in New Issue
Block a user