summaryrefslogtreecommitdiffstats
path: root/debian/tests/simpletest
blob: 49ca3516313fe246c370aa2a9ce987f55a553335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

set -e

setup() (
	service bind9 stop
	service bind9 start
)

run() (
	# Make a query against a local zone
	dig -x 127.0.0.1 @127.0.0.1
)

teardown() (
	service bind9 stop
)

setup
run
teardown