mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
b0bcc35fda
Signed-off-by: kagarmoe <kgarmoe@chef.io>
47 lines
1.2 KiB
Text
47 lines
1.2 KiB
Text
---
|
|
title: About the zfs_pool Resource
|
|
platform: linux
|
|
---
|
|
|
|
# zfs_pool
|
|
|
|
Use the `zfs_pool` InSpec audit resource to test the ZFS pools on FreeBSD systems.
|
|
|
|
<br>
|
|
|
|
## Syntax
|
|
|
|
A `zfs_pool` resource block declares the ZFS pool properties that should be tested:
|
|
|
|
describe zfs_pool('pool') do
|
|
it { should MATCHER 'value' }
|
|
end
|
|
|
|
where
|
|
|
|
* `('pool')` is the name of the ZFS pool (eg: `'tank'`)
|
|
* `MATCHER` is a valid matcher for this resource
|
|
* `'value'` is the value to be tested
|
|
|
|
<br>
|
|
|
|
## Examples
|
|
|
|
The following examples show how to use this InSpec audit resource.
|
|
|
|
### Test a pool of 'tank'
|
|
|
|
describe zfs_pool('tank') do
|
|
its('autoexpand') { should eq 'off' }
|
|
its('failmode') { should eq 'continue' }
|
|
its('feature@lz4_compress') { should eq 'active' }
|
|
its('health') { should eq 'ONLINE' }
|
|
its('listsnapshots') { should eq 'off' }
|
|
its('readonly') { should eq 'off' }
|
|
end
|
|
|
|
<br>
|
|
|
|
## Matchers
|
|
|
|
This InSpec audit resource dynamically exposes all ZFS pool properties available (see: `man zpool` for the list of supported properties). For a full list of available matchers, please visit our [matchers page](https://www.inspec.io/docs/reference/matchers/).
|