Class: Cmd

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/command.rb

Overview

copyright: 2015, Vulcano Security GmbH author: Dominik Richter author: Christoph Hartmann license: All rights reserved

Direct Known Subclasses

Script

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cmd) ⇒ Cmd

Returns a new instance of Cmd.



21
22
23
# File 'lib/resources/command.rb', line 21

def initialize(cmd)
  @command = cmd
end

Instance Attribute Details

#commandObject (readonly)

Returns the value of attribute command.



19
20
21
# File 'lib/resources/command.rb', line 19

def command
  @command
end

Instance Method Details

#exist?Boolean

Returns:

  • (Boolean)


41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/resources/command.rb', line 41

def exist?
  # silent for mock resources
  return false if inspec.os[:family].to_s == 'unknown'

  if inspec.os.linux?
    res = inspec.backend.run_command("bash -c 'type \"#{@command}\"'")
  elsif inspec.os.windows?
    res = inspec.backend.run_command("where.exe \"#{@command}\"")
  elsif inspec.os.unix?
    res = inspec.backend.run_command("type \"#{@command}\"")
  else
    warn "`command(#{@command}).exist?` is not suported on your OS: #{inspec.os[:family]}"
    return false
  end
  res.exit_status.to_i == 0
end

#exit_statusObject



37
38
39
# File 'lib/resources/command.rb', line 37

def exit_status
  result.exit_status.to_i
end

#resultObject



25
26
27
# File 'lib/resources/command.rb', line 25

def result
  @result ||= inspec.backend.run_command(@command)
end

#stderrObject



33
34
35
# File 'lib/resources/command.rb', line 33

def stderr
  result.stderr
end

#stdoutObject



29
30
31
# File 'lib/resources/command.rb', line 29

def stdout
  result.stdout
end

#to_sObject



58
59
60
# File 'lib/resources/command.rb', line 58

def to_s
  "Command #{@command}"
end