1103ba509SCy Schubert# #-- cachedb_no_store.post --#
2103ba509SCy Schubert# source the master var file when it's there
3103ba509SCy Schubert[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
4103ba509SCy Schubert# source the test var file when it's there
5103ba509SCy Schubert[ -f .tpkg.var.test ] && source .tpkg.var.test
6103ba509SCy Schubert#
7103ba509SCy Schubert# do your teardown here
8103ba509SCy SchubertPRE="../.."
9103ba509SCy Schubert. ../common.sh
10103ba509SCy Schubert
11103ba509SCy Schubertecho "> cat logfiles"
12103ba509SCy Schubertcat fwd.log
13103ba509SCy Schubertif test -f fwd2.log; then cat fwd2.log; else echo "no fwd2.log"; fi
14103ba509SCy Schubertif test -f fwd3.log; then cat fwd3.log; else echo "no fwd3.log"; fi
15103ba509SCy Schubertif test -f fwd4.log; then cat fwd4.log; else echo "no fwd4.log"; fi
16103ba509SCy Schubertcat unbound.log
17103ba509SCy Schubertif test -f unbound2.log; then cat unbound2.log; else echo "no unbound2.log"; fi
18103ba509SCy Schubertkill_pid $FWD_PID
19*b7c0c8c1SCy Schubertkill_from_pidfile "unbound.pid"
20103ba509SCy Schubertrm -f $CONTROL_PATH/controlpipe.$CONTROL_PID
21