forked from ungleich-public/cdist
Fix SC2143.
This commit is contained in:
parent
e46420e7f5
commit
7b17ad4733
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ for property in *; do
|
|||
done
|
||||
|
||||
ver="$(cat "$__global/explorer/os_version")"
|
||||
if [ -n "$(echo "$ver" | grep '^10\.' )" ]; then # Version is 10.x
|
||||
if echo "$ver" | grep -q '^10\.'; then # Version is 10.x
|
||||
__jail_freebsd10 "$@"
|
||||
else
|
||||
__jail_freebsd9 "$@"
|
||||
|
|
Loading…
Reference in a new issue