inspec/lib/resources/os.rb
Christoph Hartmann 8fff2ee989 add author header
2015-10-06 18:55:44 +02:00

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