Class: Inspec::Resources::Cmd

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

Direct Known Subclasses

Bash, PowershellScript

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cmd) ⇒ Cmd

Returns a new instance of Cmd.



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

def initialize(cmd)
  if cmd.nil?
    raise 'InSpec `command` was called with `nil` as the argument. This is not supported. Please provide a valid command instead.'
  end
  @command = cmd
end

Instance Attribute Details

#commandObject (readonly)

Returns the value of attribute command.



23
24
25
# File 'lib/resources/command.rb', line 23

def command
  @command
end

Instance Method Details

#exist?Boolean

rubocop:disable Metrics/AbcSize

Returns:

  • (Boolean)


48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/resources/command.rb', line 48

def exist? # rubocop:disable Metrics/AbcSize
  # silent for mock resources
  return false if inspec.os.name.nil? || inspec.os.name == 'mock'

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

#exit_statusObject



44
45
46
# File 'lib/resources/command.rb', line 44

def exit_status
  result.exit_status.to_i
end

#resultObject



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

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

#stderrObject



40
41
42
# File 'lib/resources/command.rb', line 40

def stderr
  result.stderr
end

#stdoutObject



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

def stdout
  result.stdout
end

#to_sObject



69
70
71
# File 'lib/resources/command.rb', line 69

def to_s
  "Command #{@command}"
end