UmVirt LFS Package info

DB commit: c78e95157185199cceff370fa5b5f1dd2a1be2fa
APP commit: cac3f2066a9a05955b29d720b9b9b14f534d21c2

unbound

Unbound is a validating, recursive, caching DNS resolver.

Package info

Codename: unbound
Source file: unbound-1.10.0.tar.gz
Source directory: unbound-1.10.0
Package URL: https://umvirt.com/linux/downloads/0.1/packages/u/unbound-1.10.0.tar.gz
Package md5-checksum URL: https://umvirt.com/linux/downloads/0.1/packages/u/unbound-1.10.0.tar.gz.md5sum
Dependances: *** NO DEPENDANCES FOUND ***
Dependance of: *** NO PACKAGES FOUND ***
Patches: *** NO PATCHES FOUND ***
Addons: *** NO ADDONS FOUND ***
Nestings *** NO NESTINGS FOUND ***
Configuration script:
./configure --prefix=/usr --sysconfdir=/etc  --localstatedir=/var

Build script:
make

Install script:
#create user
useradd -c "Unbound Daemon Owner" -U -d /var/lib/unbound -r unbound
#install files
make install

#install service
mkdir /usr/lib/systemd/system
cat > /usr/lib/systemd/system/unbound.service << "EOF"
[Unit]
Description=Validating, recursive, and caching DNS resolver
After=network.target

[Install]
WantedBy=multi-user.target

[Service]
ExecReload=+/bin/kill -HUP \$MAINPID
ExecStart=/usr/sbin/unbound
Type=forking
CapabilityBoundingSet=CAP_NET_BIND_SERVICE CAP_SETGID CAP_SETUID CAP_SYS_CHROOT CAP_SYS_RESOURCE CAP_NET_RAW

EOF