summaryrefslogtreecommitdiffstats
path: root/nixos/doc
diff options
context:
space:
mode:
authorNicolas B. Pierron <nicolas.b.pierron@gmail.com>2015-08-23 16:39:13 +0200
committerChristoph Hrdinka <c.github@hrdinka.at>2016-02-28 09:18:39 +0100
commit73630b89862222daacd67a3acd0b41cb4e41071a (patch)
tree8addb6724ac550681905f1cea944ff0f2b1957d0 /nixos/doc
parentc4c9019105f790252a3b996c6dad4c33393e7977 (diff)
nsd service: add non-backward compatible release note entry
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-unstable.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml
index ddbd80a8a00d..5c2938794b95 100644
--- a/nixos/doc/manual/release-notes/rl-unstable.xml
+++ b/nixos/doc/manual/release-notes/rl-unstable.xml
@@ -226,6 +226,27 @@ programs.ibus.plugins = with pkgs; [ ibus-anthy mozc ];
was removed. Please review the currently available options.</para>
</listitem>
+ <listitem>
+ <para>
+ The option <option>services.nsd.zones.&lt;name&gt;.data</option> no
+ longer interpret the dollar sign ($) as a shell variable, as such it
+ should not be escaped anymore. Thus the following zone data:
+ </para>
+ <programlisting>
+\$ORIGIN example.com.
+\$TTL 1800
+@ IN SOA ns1.vpn.nbp.name. admin.example.com. (
+ </programlisting>
+ <para>
+ Should modified to look like the actual file expected by nsd:
+ </para>
+ <programlisting>
+$ORIGIN example.com.
+$TTL 1800
+@ IN SOA ns1.vpn.nbp.name. admin.example.com. (
+ </programlisting>
+ </listitem>
+
</itemizedlist>