inspec/docs/resources/bash.md.erb

76 lines
1.7 KiB
Text
Raw Normal View History

2016-09-22 12:43:57 +00:00
---
title: About the bash Resource
platform: linux
2016-09-22 12:43:57 +00:00
---
# bash
Use the `bash` InSpec audit resource to test an arbitrary command that is run on the system using a Bash script.
<br>
## 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('property') { should eq 'expected value' }
2016-09-22 12:43:57 +00:00
end
where
* `'command'` must specify a command to be run
* `'property'` is one of `exit_status`, `stderr`, or `stdout`
* `'expected value'` tests the output of the command run on the system versus the expected output stated in the test
2016-09-22 12:43:57 +00:00
For example:
describe bash('ls -al /') do
its('stdout') { should match /bin/ }
its('stderr') { should eq '' }
its('exit_status') { should eq 0 }
end
<br>
2016-09-22 12:43:57 +00:00
## Properties
2016-09-22 12:43:57 +00:00
* `exit_status`, `stderr`, `stdout`
2016-09-22 12:43:57 +00:00
<br>
2016-09-22 12:43:57 +00:00
## Property Examples
2016-09-22 12:43:57 +00:00
### exit_status
2016-09-22 12:43:57 +00:00
The `exit_status` property tests the exit status for the command:
2016-09-22 12:43:57 +00:00
its('exit_status') { should eq 0 }
### stderr
2016-09-22 12:43:57 +00:00
The `stderr` property tests results of the command as returned in standard error (stderr):
2016-09-22 12:43:57 +00:00
its('stderr') { should eq '' }
### stdout
2016-09-22 12:43:57 +00:00
The `stdout` property tests results of the command as returned in standard output (stdout).
2016-09-22 12:43:57 +00:00
its('stdout') { should match /bin/ }
<br>
## Matchers
For a full list of available matchers, please visit our [matchers page](https://www.inspec.io/docs/reference/matchers/).
### exist
If an absolute path is provided, the `exist` matcher tests if the command exists on the filesystem at the specified location. Otherwise, the `exist` matcher tests if the command is found in the PATH.
it { should exist }