Class: Inspec::Resources::Cmd
- Inherits:
-
Object
- Object
- Inspec::Resources::Cmd
show all
- Defined in:
- lib/inspec/resources/command.rb
Instance Attribute Summary collapse
Instance Method Summary
collapse
Constructor Details
#initialize(cmd, options = {}) ⇒ Cmd
Returns a new instance of Cmd.
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/inspec/resources/command.rb', line 28
def initialize(cmd, options = {})
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
cli_timeout = Inspec::Config.cached["command_timeout"]&.to_i
cli_timeout = nil if cli_timeout == 0 @timeout = cli_timeout || options[:timeout]&.to_i
if options[:redact_regex]
unless options[:redact_regex].is_a?(Regexp)
@command = "ERROR"
raise Inspec::Exceptions::ResourceFailed,
"The `redact_regex` option must be a regular expression"
end
@redact_regex = options[:redact_regex]
end
end
|
Instance Attribute Details
#command ⇒ Object
Returns the value of attribute command.
26
27
28
|
# File 'lib/inspec/resources/command.rb', line 26
def command
@command
end
|
Instance Method Details
#exist? ⇒ Boolean
rubocop:disable Metrics/AbcSize
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# File 'lib/inspec/resources/command.rb', line 75
def exist? 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("sh -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_status ⇒ Object
71
72
73
|
# File 'lib/inspec/resources/command.rb', line 71
def exit_status
result.exit_status.to_i
end
|
#resource_id ⇒ Object
to_s method outputs the command which we are using here as UUID to identify resource and also it take cares of Redact output
97
98
99
|
# File 'lib/inspec/resources/command.rb', line 97
def resource_id
to_s || "command"
end
|
#result ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/inspec/resources/command.rb', line 51
def result
@result ||= begin
inspec.backend.run_command(@command, timeout: @timeout)
rescue Train::CommandTimeoutReached
sleep 0.1
raise Inspec::Exceptions::ResourceFailed,
"Command `#{@command}` timed out after #{@timeout} seconds"
end
end
|
#stderr ⇒ Object
67
68
69
|
# File 'lib/inspec/resources/command.rb', line 67
def stderr
result.stderr
end
|
#stdout ⇒ Object
63
64
65
|
# File 'lib/inspec/resources/command.rb', line 63
def stdout
result.stdout
end
|
#to_s ⇒ Object
101
102
103
104
105
106
107
|
# File 'lib/inspec/resources/command.rb', line 101
def to_s
output = "Command: `#{@command}`"
output.gsub!(@redact_regex, '\1REDACTED\2') unless @redact_regex.nil?
output
end
|