mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
13 lines
214 B
Ruby
13 lines
214 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
|
|
module Vulcano::Resources
|
|
class OS < Vulcano.resource(1)
|
|
name 'os'
|
|
|
|
def [](name)
|
|
vulcano.backend.os[name]
|
|
end
|
|
end
|
|
end
|