4e0ffe0bae
final release. Obtained from: ftp.isc.org
12 lines
114 B
Bash
Executable File
12 lines
114 B
Bash
Executable File
#!/bin/sh
|
|
|
|
uname=/usr/bin/uname
|
|
|
|
if [ -f $uname ]; then
|
|
case `$uname -s` in
|
|
FreeBSD) exit 0 ;;
|
|
esac
|
|
fi
|
|
|
|
exit 1
|