Codebase list unbound / d18761f
Imported Debian patch 1.0.2-1.2 Ondřej Surý authored 15 years ago Robert S. Edmonds committed 12 years ago
4 changed file(s) with 16 addition(s) and 11 deletion(s). Raw diff Collapse all Expand all
0 unbound (1.0.2-1.2) unstable; urgency=low
1
2 * Enable unbound by default (Closes: #508884)
3 * Call dh_installinit with --error-handler=true (Closes: #500176)
4
5 -- Ondřej Surý <ondrej@debian.org> Tue, 16 Dec 2008 11:54:15 +0100
6
07 unbound (1.0.2-1.1) unstable; urgency=low
18
29 [ Hideki Yamane (Debian-JP) ]
2121 dh clean
2222
2323 install: build
24 dh install
24 dh install --before dh_installinit
25 dh_installinit --error-handler=true
26 dh install --after dh_installinit
2527 install -m 0644 doc/example.conf debian/unbound/etc/unbound/unbound.conf
2628
2729 binary-arch: install
00 # Do you want to start unbound?
11 # only allowed values are "true" and "false".
22 # if you already use other DNS server, they would listen port 53,
3 # so unbound fails to start. Please adjust, then set "true".
3 # so unbound fails to start. Please set UNBOUND_ENABLE to "false".
44
5 UNBOUND_ENABLE=false
6
5 UNBOUND_ENABLE=true
76
87 # config file path
98 #DAEMON_OPTS="-c /etc/unbound/unbound.conf"
00 #!/bin/sh
11 set -e
2 if [ -x "/etc/init.d/unbound" ]; then
3 if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
4 invoke-rc.d unbound stop
5 else
6 /etc/init.d/unbound stop
7 fi
8 fi
2
3 #DEBHELPER#
4
5 exit 0