summaryrefslogtreecommitdiff
path: root/debian/patches/run-as-knot.knot.patch
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/run-as-knot.knot.patch')
-rw-r--r--debian/patches/run-as-knot.knot.patch75
1 files changed, 0 insertions, 75 deletions
diff --git a/debian/patches/run-as-knot.knot.patch b/debian/patches/run-as-knot.knot.patch
deleted file mode 100644
index 1cf760f..0000000
--- a/debian/patches/run-as-knot.knot.patch
+++ /dev/null
@@ -1,75 +0,0 @@
---- knot.orig/samples/knot.sample.conf.in
-+++ knot/samples/knot.sample.conf.in
-@@ -6,19 +6,67 @@
- #
-
- system {
-+ # Identity of the server (see RFC 4892).
- identity "@package@ @version@";
-+
-+ # User for running server
-+ # May also specify user.group (e.g. knot.knot)
-+ user knot.knot;
-+
-+ # Working directory of the server
-+ # Used to store compiled zones and PID file
-+ # default: ${sharedstatedir}/knot, configured with --with-storage
-+ storage "/var/lib/knot";
-+
-+ # Directory for storing run-time data
-+ # default: ${localstatedir}/run/knot, configured with --with-rundir
-+ rundir "/run/knot";
- }
-
- interfaces {
-- my-iface { address 127.0.0.1@53533; }
-+ ipv4 {
-+ address 127.0.0.1;
-+ port 53;
-+ }
-+# ipv6 {
-+# address ::1;
-+# port 53;
-+# }
-+}
-+
-+control {
-+ # Specifies interface, syntax is exactly the same as in 'interfaces' section
-+ # Default: $(run_dir)/knot.sock
-+ listen-on "knot.sock";
-+
-+ # As an alternative, you can use an IPv4/v6 address and port
-+ # listen-on { address 127.0.0.1@5533; }
-+
-+ # Specifies ACL list for remote control
-+ # Same syntax as for ACLs in zones
-+ # List of remotes or groups delimited by comma
-+ # Notice: keep in mind that ACLs bear no effect with UNIX sockets
-+ # allow server0, admins;
- }
-
- zones {
-- example.com {
-- file "@sysconfdir@/example.com.zone";
-- }
-+# example.com {
-+# file "@sysconfdir@/example.com.zone";
-+# }
- }
-
- log {
-- syslog { any info, notice, warning, error; }
-+ syslog {
-+ # log errors of any category
-+ any error; # for <category> and <severity> see above
-+ # log also warnings and notices from category 'zone'
-+ zone warning, notice;
-+ # log info from server
-+ server info;
-+ }
-+
-+ # Log fatal, warnings and errors to stderr
-+ stderr {
-+ any error, warning;
-+ }
- }