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

33 lines
573 B
Ruby

# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
# author: Dominik Richter
# author: Christoph Hartmann
# license: All rights reserved
class Cmd < Vulcano.resource(1)
name 'command'
def initialize(cmd)
@command = cmd
end
def result
@result ||= vulcano.backend.run_command(@command)
end
def stdout
result.stdout
end
def stderr
result.stderr
end
def exit_status
result.exit_status.to_i
end
def exist?
res = vulcano.backend.run_command("type \"#{@command}\" > /dev/null")
res.exit_status.to_i == 0
end
end