forked from ungleich-public/cdist
[explorer/os_version] Fix for FreeBSD < 10.0 (again)
This commit is contained in:
parent
f730aa7679
commit
53334fb4eb
1 changed files with 8 additions and 1 deletions
|
@ -89,7 +89,14 @@ in
|
||||||
freebsd)
|
freebsd)
|
||||||
# Apparently uname -r is not a reliable way to get the patch level.
|
# Apparently uname -r is not a reliable way to get the patch level.
|
||||||
# See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251743
|
# See: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251743
|
||||||
freebsd-version
|
if command -v freebsd-version >/dev/null 2>&1
|
||||||
|
then
|
||||||
|
# get userland version
|
||||||
|
freebsd-version -u
|
||||||
|
else
|
||||||
|
# fallback to kernel release for FreeBSD < 10.0
|
||||||
|
uname -r
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
*bsd|solaris)
|
*bsd|solaris)
|
||||||
uname -r
|
uname -r
|
||||||
|
|
Loading…
Reference in a new issue