summaryrefslogtreecommitdiffstats
path: root/network/yadifa/README
diff options
context:
space:
mode:
author Sergei Fedosoff <eleksir@gmail.com>2016-09-17 07:13:38 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-09-17 07:21:21 +0700
commit4a3d751ad2beb89a9975640898d46f1715d79902 (patch)
tree565ce5791578e80a1df3e857b25602893b565d37 /network/yadifa/README
parent70623d4892e1857775c87b9de974ddd8521daa87 (diff)
downloadslackbuilds-4a3d751ad2beb89a9975640898d46f1715d79902.tar.gz
slackbuilds-4a3d751ad2beb89a9975640898d46f1715d79902.tar.xz
network/yadifa: Added (Yet Another DNS Implementation For All).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network/yadifa/README')
-rw-r--r--network/yadifa/README25
1 files changed, 25 insertions, 0 deletions
diff --git a/network/yadifa/README b/network/yadifa/README
new file mode 100644
index 0000000000..122a926a61
--- /dev/null
+++ b/network/yadifa/README
@@ -0,0 +1,25 @@
+Lightweight authoritative Name Server with DNSSEC capabilities. Developed by
+the passionate people behind the .eu top-level domain, YADIFA has been built
+from scratch to face today’s DNS challenges, with no compromise on security,
+speed and stability, to offer a better and safer Internet experience.
+
+Package binaries and shared objects linked here dynamically, but by-default
+configure script links it statically, for performance consideration. Static
+linking makes sence only on heavy loaded environment (10+ Mbit DNS traffic,
+5000+ queries/second per server).
+
+YADIFA requires its own user in order to run securely. It is not advised to
+run services as root user without special reason.
+
+
+To add yadifa user in system run as root:
+
+# groupadd -g 332 yadifa
+# useradd -u 332 -d /var/lib/yadifa -g yadifa -s /bin/false yadifa
+
+
+In order to run YADIFA during boot process, add to /etc/rc.d/rc.local :
+
+if [ -x /etc/rc.d/rc.yadifa ]; then
+ /etc/rc.d/rc.yadifa start
+fi