deadwood: removed

This commit is contained in:
Juergen Daubert 2018-05-22 12:53:49 +02:00
parent 74970eaddf
commit 944c9f7ae8
6 changed files with 0 additions and 99 deletions

View File

@ -1,15 +0,0 @@
drwxr-xr-x root/root etc/
-rw-r--r-- root/root etc/dwood3rc
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/deadwood
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/sbin/
-rwxr-xr-x root/root usr/sbin/Deadwood
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/deadwood.1.gz
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/lib/
drwxr-xr-x root/root var/lib/deadwood/
drwx------ nobody/root var/lib/deadwood/cache/

View File

@ -1,3 +0,0 @@
b2dd06eb5f3e6c621695bd5679a2d208 deadwood
3319233d9a0e6756f63153e73aed3578 deadwood-3.2.11.tar.xz
0a2d736d8043d5cae0c5e41d2110c6a9 dwood3rc

View File

@ -1,7 +0,0 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/cfc2dwiAnS86Lvtribm9VRuMt5yDBwaArGXXTFalkm3y9a9Ntt0tMzR6CcwBrK1x68itxGEBMYIViRWWIP/+Q8=
SHA256 (Pkgfile) = 8445e4bee9a2ccc1b5acf95a7e2121d7a77f5a1d006c42abf7460df9df2c7d1f
SHA256 (.footprint) = c8d916f21b2796115656b1b5337f4fa2a9db6bd1bcc5afbafa5d85c54201dce6
SHA256 (deadwood-3.2.11.tar.xz) = ceb124b3917cf24e8e16887c1c9cb67819b7f41013c3a6e723316d470099f104
SHA256 (dwood3rc) = 358f8d6f195ecfa9823105233620be91a8a67da686322a41ea1f292069613216
SHA256 (deadwood) = b50eb7d4de77dc16282f7c4d542a08ba3f706244ca71b164d58dcb8aac995eeb

View File

@ -1,22 +0,0 @@
# Description: Fully recursive caching DNS resolver
# URL: http://www.maradns.org/deadwood
# Maintainer: Juergen Daubert, jue at crux dot nu
name=deadwood
version=3.2.11
release=1
source=(http://maradns.samiam.org/deadwood/stable/$name-$version.tar.xz \
dwood3rc deadwood)
build () {
cd $name-$version
make -C src FLAGS="$CFLAGS"
install -d $PKG/{usr/sbin,usr/share/man/man1,etc/rc.d,var/lib/deadwood}
install -d -m 700 -o nobody $PKG/var/lib/deadwood/cache
install -m 755 src/Deadwood $PKG/usr/sbin
install -m 644 doc/Deadwood.1 $PKG/usr/share/man/man1/deadwood.1
install -m 644 $SRC/dwood3rc $PKG/etc
install -m 755 $SRC/deadwood $PKG/etc/rc.d
}

View File

@ -1,40 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/deadwood: start/stop deadwood DNS resolver
#
SSD=/sbin/start-stop-daemon
PROG=/usr/sbin/Deadwood
PID=/var/run/deadwood.pid
LOG=/var/log/deadwood.log
case $1 in
start)
$SSD --start -bmC --pidfile $PID --exec $PROG >> $LOG 2>&1
RETVAL=$?
;;
stop)
$SSD --stop --remove-pidfile --retry 10 --pidfile $PID
RETVAL=$?
;;
restart)
$0 stop
$0 start
;;
status)
$SSD --status --pidfile $PID
case $? in
0) echo "$PROG is running with pid $(cat $PID)" ;;
1) echo "$PROG is not running but the pid file $PID exists" ;;
3) echo "$PROG is not running" ;;
4) echo "Unable to determine the program status" ;;
esac
;;
*)
echo "usage: $0 [start|stop|restart|status]"
;;
esac
exit $RETVAL
# End of file

View File

@ -1,12 +0,0 @@
#
# /etc/deadwoodrc
#
bind_address="127.0.0.1"
chroot_dir = "/var/lib/deadwood"
cache_file = "cache/dw_cache"
maximum_cache_elements = 60000
recursive_acl = "127.0.0.1/16"
# End of file