about summary refs log tree commit diff
path: root/nixos/doc/manual
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/manual
parentc4c9019105f790252a3b996c6dad4c33393e7977 (diff)
downloadnixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar.gz
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar.bz2
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar.lz
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar.xz
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.tar.zst
nixlib-73630b89862222daacd67a3acd0b41cb4e41071a.zip
nsd service: add non-backward compatible release note entry
Diffstat (limited to 'nixos/doc/manual')
-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>