chiark / gitweb /
timesyncd: Support timesyncd.conf.d directories in the usual search paths
authorJosh Triplett <josh@joshtriplett.org>
Sat, 29 Nov 2014 09:07:21 +0000 (01:07 -0800)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Sat, 29 Nov 2014 18:55:32 +0000 (13:55 -0500)
Makefile-man.am
man/timesyncd.conf.xml
src/timesync/timesyncd-conf.c
src/timesync/timesyncd.conf.in

index 36e0ebbb6725cab9d2181be7447927715fe470de..e3c43b269badce5680cb7b1ba183b278df551377 100644 (file)
@@ -1244,11 +1244,16 @@ MANPAGES += \
        man/systemd-timesyncd.service.8 \
        man/timesyncd.conf.5
 MANPAGES_ALIAS += \
-       man/systemd-timesyncd.8
+       man/systemd-timesyncd.8 \
+       man/timesyncd.conf.d.5
 man/systemd-timesyncd.8: man/systemd-timesyncd.service.8
+man/timesyncd.conf.d.5: man/timesyncd.conf.5
 man/systemd-timesyncd.html: man/systemd-timesyncd.service.html
        $(html-alias)
 
+man/timesyncd.conf.d.html: man/timesyncd.conf.html
+       $(html-alias)
+
 endif
 
 if ENABLE_VCONSOLE
index aeb7182f912f650ab16c5bbf905ffc856fdf2d5b..1a56c2c5c4509d177e883760d24ec431404481b5 100644 (file)
@@ -22,7 +22,8 @@
   along with systemd; If not, see <http://www.gnu.org/licenses/>.
 -->
 
-<refentry id="timesyncd.conf" conditional='ENABLE_TIMESYNCD'>
+<refentry id="timesyncd.conf" conditional='ENABLE_TIMESYNCD'
+          xmlns:xi="http://www.w3.org/2001/XInclude">
         <refentryinfo>
                 <title>timesyncd.conf</title>
                 <productname>systemd</productname>
 
         <refnamediv>
                 <refname>timesyncd.conf</refname>
-                <refpurpose>Network Time Synchronization configuration file</refpurpose>
+                <refname>timesyncd.conf.d</refname>
+                <refpurpose>Network Time Synchronization configuration files</refpurpose>
         </refnamediv>
 
         <refsynopsisdiv>
                 <para><filename>/etc/systemd/timesyncd.conf</filename></para>
+                <para><filename>/etc/systemd/timesyncd.conf.d/*.conf</filename></para>
+                <para><filename>/run/systemd/timesyncd.conf.d/*.conf</filename></para>
+                <para><filename>/usr/lib/systemd/timesyncd.conf.d/*.conf</filename></para>
         </refsynopsisdiv>
 
         <refsect1>
                 <title>Description</title>
 
-                <para>When starting, systemd-timesyncd will read the
-                configuration file
-                <filename>timesyncd.conf</filename>.  This
-                configuration file controls NTP network time
+                <para>These configuration files control NTP network time
                 synchronization.</para>
 
         </refsect1>
 
+        <xi:include href="standard-conf.xml" xpointer="confd" />
+        <xi:include href="standard-conf.xml" xpointer="conf" />
+
         <refsect1>
                 <title>Options</title>
 
index 4c2dcdb62b97e28f37e6dbdfb4d647438e6da355..be1f4bb1510fc28114513b144b356c006a45f9bf 100644 (file)
@@ -97,8 +97,9 @@ int config_parse_servers(
 int manager_parse_config_file(Manager *m) {
         assert(m);
 
-        return config_parse(NULL, "/etc/systemd/timesyncd.conf", NULL,
-                            "Time\0",
-                            config_item_perf_lookup, timesyncd_gperf_lookup,
-                            false, false, true, m);
+        return config_parse_many("/etc/systemd/timesyncd.conf",
+                                 CONF_DIRS_NULSTR("systemd/timesyncd.conf"),
+                                 "Time\0",
+                                 config_item_perf_lookup, timesyncd_gperf_lookup,
+                                 false, m);
 }
index 674a51dbd72223332c13b1d92d98d46d63e0cd66..fc3c6c49cfdd4b738a0ab37881cbed259ed1d747 100644 (file)
@@ -5,6 +5,9 @@
 #  the Free Software Foundation; either version 2.1 of the License, or
 #  (at your option) any later version.
 #
+# You can override the directives in this file by creating files in
+# /etc/systemd/timesyncd.conf.d/*.conf.
+#
 # See timesyncd.conf(5) for details
 
 [Time]