inspec/docs/resources/bash.md.erb

85 lines
1.6 KiB
Text
Raw Normal View History

2016-09-22 12:43:57 +00:00
---
title: About the bash Resource
---
# bash
Use the `bash` InSpec audit resource to test an arbitrary command that is run on the system using a Bash script.
## Syntax
2016-09-22 12:43:57 +00:00
A `command` resource block declares a command to be run, one (or more) expected outputs, and the location to which that output is sent:
describe bash('command') do
it { should exist }
its('matcher') { should eq 'output' }
end
where
* `'command'` must specify a command to be run
* `'matcher'` is one of `exit_status`, `stderr`, or `stdout`
* `'output'` tests the output of the command run on the system versus the output value stated in the test
For example:
describe bash('ls -al /') do
its('stdout') { should match /bin/ }
its('stderr') { should eq '' }
its('exit_status') { should eq 0 }
end
## Matchers
2016-09-22 12:43:57 +00:00
This InSpec audit resource has the following matchers:
### be
2016-09-22 12:43:57 +00:00
<%= partial "/shared/matcher_be" %>
### cmp
2016-09-22 12:43:57 +00:00
<%= partial "/shared/matcher_cmp" %>
### eq
2016-09-22 12:43:57 +00:00
<%= partial "/shared/matcher_eq" %>
### exist
2016-09-22 12:43:57 +00:00
The `exist` matcher tests if a command may be run on the system:
it { should exist }
### exit_status
2016-09-22 12:43:57 +00:00
The `exit_status` matcher tests the exit status for the command:
its('exit_status') { should eq 0 }
### include
2016-09-22 12:43:57 +00:00
<%= partial "/shared/matcher_include" %>
### match
2016-09-22 12:43:57 +00:00
<%= partial "/shared/matcher_match" %>
### stderr
2016-09-22 12:43:57 +00:00
The `stderr` matcher tests results of the command as returned in standard error (stderr):
its('stderr') { should eq '' }
### stdout
2016-09-22 12:43:57 +00:00
The `stdout` matcher tests results of the command as returned in standard output (stdout).
its('stdout') { should match /bin/ }
## Examples
2016-09-22 12:43:57 +00:00
None.