mirror of
https://github.com/systemd/systemd.git
synced 2024-12-23 21:35:11 +03:00
resolved: Support resolved.conf.d directories in the usual search paths
This commit is contained in:
parent
301af7e485
commit
f2dacc96b2
@ -1204,8 +1204,13 @@ MANPAGES += \
|
|||||||
man/resolved.conf.5 \
|
man/resolved.conf.5 \
|
||||||
man/systemd-resolved.service.8
|
man/systemd-resolved.service.8
|
||||||
MANPAGES_ALIAS += \
|
MANPAGES_ALIAS += \
|
||||||
|
man/resolved.conf.d.5 \
|
||||||
man/systemd-resolved.8
|
man/systemd-resolved.8
|
||||||
|
man/resolved.conf.d.5: man/resolved.conf.5
|
||||||
man/systemd-resolved.8: man/systemd-resolved.service.8
|
man/systemd-resolved.8: man/systemd-resolved.service.8
|
||||||
|
man/resolved.conf.d.html: man/resolved.conf.html
|
||||||
|
$(html-alias)
|
||||||
|
|
||||||
man/systemd-resolved.html: man/systemd-resolved.service.html
|
man/systemd-resolved.html: man/systemd-resolved.service.html
|
||||||
$(html-alias)
|
$(html-alias)
|
||||||
|
|
||||||
|
@ -22,7 +22,8 @@
|
|||||||
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
along with systemd; If not, see <http://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<refentry id="resolved.conf" conditional='ENABLE_RESOLVED'>
|
<refentry id="resolved.conf" conditional='ENABLE_RESOLVED'
|
||||||
|
xmlns:xi="http://www.w3.org/2001/XInclude">
|
||||||
<refentryinfo>
|
<refentryinfo>
|
||||||
<title>resolved.conf</title>
|
<title>resolved.conf</title>
|
||||||
<productname>systemd</productname>
|
<productname>systemd</productname>
|
||||||
@ -44,23 +45,28 @@
|
|||||||
|
|
||||||
<refnamediv>
|
<refnamediv>
|
||||||
<refname>resolved.conf</refname>
|
<refname>resolved.conf</refname>
|
||||||
<refpurpose>Network Name Resolution configuration file</refpurpose>
|
<refname>resolved.conf.d</refname>
|
||||||
|
<refpurpose>Network Name Resolution configuration files</refpurpose>
|
||||||
</refnamediv>
|
</refnamediv>
|
||||||
|
|
||||||
<refsynopsisdiv>
|
<refsynopsisdiv>
|
||||||
<para><filename>/etc/systemd/resolved.conf</filename></para>
|
<para><filename>/etc/systemd/resolved.conf</filename></para>
|
||||||
|
<para><filename>/etc/systemd/resolved.conf.d/*.conf</filename></para>
|
||||||
|
<para><filename>/run/systemd/resolved.conf.d/*.conf</filename></para>
|
||||||
|
<para><filename>/usr/lib/systemd/resolved.conf.d/*.conf</filename></para>
|
||||||
</refsynopsisdiv>
|
</refsynopsisdiv>
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
<title>Description</title>
|
<title>Description</title>
|
||||||
|
|
||||||
<para>When starting, systemd-resolved will read the
|
<para>These configuration files control local DNS and LLMNR
|
||||||
configuration file <filename>resolved.conf</filename>.
|
|
||||||
This configuration file controls local DNS and LLMNR
|
|
||||||
name resolving.</para>
|
name resolving.</para>
|
||||||
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
|
<xi:include href="standard-conf.xml" xpointer="confd" />
|
||||||
|
<xi:include href="standard-conf.xml" xpointer="conf" />
|
||||||
|
|
||||||
<refsect1>
|
<refsect1>
|
||||||
<title>Options</title>
|
<title>Options</title>
|
||||||
|
|
||||||
|
@ -147,8 +147,9 @@ int config_parse_support(
|
|||||||
int manager_parse_config_file(Manager *m) {
|
int manager_parse_config_file(Manager *m) {
|
||||||
assert(m);
|
assert(m);
|
||||||
|
|
||||||
return config_parse(NULL, "/etc/systemd/resolved.conf", NULL,
|
return config_parse_many("/etc/systemd/resolved.conf",
|
||||||
"Resolve\0",
|
CONF_DIRS_NULSTR("systemd/resolved.conf"),
|
||||||
config_item_perf_lookup, resolved_gperf_lookup,
|
"Resolve\0",
|
||||||
false, false, true, m);
|
config_item_perf_lookup, resolved_gperf_lookup,
|
||||||
|
false, m);
|
||||||
}
|
}
|
||||||
|
@ -5,6 +5,9 @@
|
|||||||
# the Free Software Foundation; either version 2.1 of the License, or
|
# the Free Software Foundation; either version 2.1 of the License, or
|
||||||
# (at your option) any later version.
|
# (at your option) any later version.
|
||||||
#
|
#
|
||||||
|
# You can override the directives in this file by creating files in
|
||||||
|
# /etc/systemd/resolved.conf.d/*.conf.
|
||||||
|
#
|
||||||
# See resolved.conf(5) for details
|
# See resolved.conf(5) for details
|
||||||
|
|
||||||
[Resolve]
|
[Resolve]
|
||||||
|
Loading…
Reference in New Issue
Block a user