summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/creating_Bind9_configuration/comment_1_0798f44e1f5a91fbc91c0b472ad92bfa._comment29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/forum/creating_Bind9_configuration/comment_1_0798f44e1f5a91fbc91c0b472ad92bfa._comment b/doc/forum/creating_Bind9_configuration/comment_1_0798f44e1f5a91fbc91c0b472ad92bfa._comment
new file mode 100644
index 00000000..d1387a22
--- /dev/null
+++ b/doc/forum/creating_Bind9_configuration/comment_1_0798f44e1f5a91fbc91c0b472ad92bfa._comment
@@ -0,0 +1,29 @@
+[[!comment format=mdwn
+ username="Nicolas.Schodet"
+ avatar="http://cdn.libravatar.org/avatar/0d7ec808ec329d04ee9a93c0da3c0089"
+ subject="comment 1"
+ date="2017-08-03T20:52:22Z"
+ content="""
+For the moment I use:
+
+```
+namedOptions :: Property DebianLike
+namedOptions =
+ File.hasContent \"/etc/bind/named.conf.options\" namedOptionsStanza
+ `onChange` Service.reloaded \"bind9\"
+ where
+ namedOptionsStanza =
+ [ \"// automatically generated by propellor\"
+ , \"options {\"
+ , \"\tdirectory \\"/var/cache/bind\\";\"
+ , \"\tdnssec-validation auto;\"
+ , \"\tlisten-on-v6 { any; };\"
+ , \"\tlisten-on { any; };\"
+ , \"\tallow-query { any; };\"
+ , \"\tallow-recursion { localhost; };\"
+ , \"\tallow-transfer { none; };\"
+ , \"\tallow-notify { none; };\"
+ , \"};\"
+ ]
+```
+"""]]