summaryrefslogtreecommitdiffstats
path: root/network
diff options
context:
space:
mode:
author Badchay2022-09-24 04:51:24 +0200
committer Willy Sudiarto Raharjo2022-09-25 08:59:45 +0200
commit86686e45bb04a0521cea218ae4793788f4201021 (patch)
treef4fa892eb28d07b409aded4fb62a859eb8983f11 /network
parentf5ca80380b55d7d85ef96842340b30c280184635 (diff)
downloadslackbuilds-86686e45bb04a0521cea218ae4793788f4201021.tar.gz
network/unbound: Updated for version 1.16.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r--network/unbound/README8
-rw-r--r--network/unbound/README.SLACKWARE64
-rw-r--r--network/unbound/unbound.SlackBuild6
-rw-r--r--network/unbound/unbound.info6
4 files changed, 71 insertions, 13 deletions
diff --git a/network/unbound/README b/network/unbound/README
index 6240929aae..52fdc7c21a 100644
--- a/network/unbound/README
+++ b/network/unbound/README
@@ -13,11 +13,3 @@ not conflict with anything else on SlackBuilds:
groupadd -g 304 unbound
useradd -r -u 304 -g unbound -d /etc/unbound/ -s /sbin/nologin -c \
'Unbound DNS resolver' unbound
-
-Note: As of version 1.16.2, the script was almost entirely rewritten.
-The idea was not only to modernize the script, but also make the
-application more compatible with the Slackware architecture and to
-be as easy to "just install and run the app". Also to note:
-The control app titled unbound-countrol is enabled by
-default but can be disabled in unbound.conf. It's secure, binds
-to localhost and can't be used by non-root users.
diff --git a/network/unbound/README.SLACKWARE b/network/unbound/README.SLACKWARE
new file mode 100644
index 0000000000..f3718b1e61
--- /dev/null
+++ b/network/unbound/README.SLACKWARE
@@ -0,0 +1,64 @@
+--------
+Welcome and background
+--------
+
+Unbound SlackBuild script was rewritten as of version 1.16.2.
+
+As of version 1.16.2 rc.unbound script was made from scratch
+to work like other SysVinit scripts. The previous versions
+included Red Hat style init script. If for some reason you still
+want to use that one, it can be found from the source tarball
+contrib directory. It's not supported by this SlackBuild, though.
+
+--------
+Configuration
+--------
+
+The main configuration file is located at /etc/unbound/unbound.conf.
+
+To make the setup as easy as possible, the SlackBuild makes some
+changes to the original file so you don't have to spend time
+changing some obvious settings, like disabling systemd socket
+activation and other stuff that's required for proper functionality
+on Slackware. The upstream configuration file is saved to
+unbound.conf.upstream.
+
+Threading is supported by Unbound but disabled by default. The
+script will set num-threads to the value of nproc. Just uncomment
+num-threads in unbound.conf to enable threading.
+
+By default, we turn on "remote control" which enables the
+functionality of unbound-control command. Despite its name, it
+binds to localhost (by default) and cannot be used by unprivileged
+users as certificate files aren't readable by them. It also allows
+logrotating to work properly.
+
+The logs are kept in /var/log/unbound/. The default settings log
+just very basic things (i.e. unbound started or stopped).
+
+The script also installs a logrotate script to /etc/logrotate.d
+
+As for resolving and caching, you'll probably want to add
+something like this to your /etc/resolv.conf:
+
+ nameserver ::1
+ nameserver 127.0.0.1
+ options trust-ad
+
+--------
+Automatic starting/stopping upon system start/shutdown
+--------
+
+To start Unbound automatically when system is booted,
+add the following lines to /etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.unbound ]; then
+ /etc/rc.d/rc.unbound start
+ fi
+
+To stop Unbound on system shutdown, add following lines
+to /etc/rc.d/rc.local_shutdown
+
+ if [ -x /etc/rc.d/rc.unbound ]; then
+ /etc/rc.d/rc.unbound stop
+ fi
diff --git a/network/unbound/unbound.SlackBuild b/network/unbound/unbound.SlackBuild
index f86ff04a0f..7bec9a1b1f 100644
--- a/network/unbound/unbound.SlackBuild
+++ b/network/unbound/unbound.SlackBuild
@@ -27,8 +27,8 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=unbound
-VERSION=${VERSION:-1.16.2}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-1.16.3}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -142,6 +142,7 @@ touch -r doc/Changelog $PKG/usr/doc/$PRGNAM-$VERSION/Changelog
# 3) Change timestamps to ASCII format (from Epoch).
# 4) Turn off chroot.
# 5) Disable systemd socket activation.
+# 6) Set num-threads to $(nproc). Still disabled by default.
cp -a $PKG/etc/unbound/unbound.conf $PKG/etc/unbound/unbound.conf.upstream
sed -i \
-e 's/# control-interface:/control-interface:/g' \
@@ -150,6 +151,7 @@ sed -i \
-e 's/# use-systemd: no/use-systemd: no/g' \
-e 's/# logfile: ""/logfile: "\/var\/log\/unbound\/unbound.log"/g' \
-e 's/# chroot: "\/etc\/unbound"/chroot: ""/g' \
+-e 's/# num-threads: 1/# num-threads: '$(nproc)' # Set to nproc by SlackBuild. Uncomment to enable threading/g' \
$PKG/etc/unbound/unbound.conf \
mkdir -p $PKG/var/run/unbound
diff --git a/network/unbound/unbound.info b/network/unbound/unbound.info
index 43ad98f481..55c07938aa 100644
--- a/network/unbound/unbound.info
+++ b/network/unbound/unbound.info
@@ -1,8 +1,8 @@
PRGNAM="unbound"
-VERSION="1.16.2"
+VERSION="1.16.3"
HOMEPAGE="https://nlnetlabs.nl/projects/unbound/about/"
-DOWNLOAD="https://www.nlnetlabs.nl/downloads/unbound/unbound-1.16.2.tar.gz"
-MD5SUM="974cbd17e2e2373f36bfce0ad5b1d4a1"
+DOWNLOAD="https://www.nlnetlabs.nl/downloads/unbound/unbound-1.16.3.tar.gz"
+MD5SUM="f0a767b32058ae67311e5d3665139d15"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""