blob: b8dc300bac2d74c23d698646db7717027c470b88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# $FreeBSD$
if [ "$2" != "DEINSTALL" ]; then
exit 0
fi
# Remove database files created if the sample blacklists were
# compiled.
find %%EXAMPLESDIR%% -name '*.db' -delete
exit 0
|