inspec/lib/utils/detect.rb
Dominik Richter 7fb41cdbee remove conditional or on release for detect util
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
2015-09-22 02:27:03 +02:00

15 lines
288 B
Ruby

# encoding: utf-8
#
# Copyright 2015, Vulcano Security GmbH
#
# Tiny test file to return OS info of the tested node
# print OS detection infos
conf = {
os_name: os[:name],
os_family: os[:family],
os_release: os[:release],
os_arch: os[:arch],
}
puts JSON.dump(conf)
exit 0