mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
11 lines
114 B
Bash
Executable file
11 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
|