summaryrefslogtreecommitdiffstats
path: root/contrib/bind/port/freebsd/probe
blob: d1b0cfe6b1e188218e6ddf421ef6fb35ce8a3739 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

uname=/usr/bin/uname

if [ -f $uname ]; then
	case `$uname -s` in
	FreeBSD) exit 0 ;;
	esac
fi

exit 1
OpenPOWER on IntegriCloud