summaryrefslogtreecommitdiff
path: root/knife/spec/support/platform_helpers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'knife/spec/support/platform_helpers.rb')
-rw-r--r--knife/spec/support/platform_helpers.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/knife/spec/support/platform_helpers.rb b/knife/spec/support/platform_helpers.rb
index 4d3acbcb33..1f36a0fbcc 100644
--- a/knife/spec/support/platform_helpers.rb
+++ b/knife/spec/support/platform_helpers.rb
@@ -127,6 +127,10 @@ def freebsd?
RUBY_PLATFORM.include?("freebsd")
end
+def freebsd_gte_12_3?
+ RUBY_PLATFORM.include?("freebsd") && !!(ohai[:platform_version].to_f >= 12.3)
+end
+
def intel_64bit?
!!(ohai[:kernel][:machine] == "x86_64")
end