inspec/docs/resources/apt.md.erb

85 lines
1.7 KiB
Text
Raw Normal View History

2016-09-22 12:43:57 +00:00
---
title: About the apt Resource
---
# apt
Use the `apt` InSpec audit resource to verify Apt repositories on the Debian and Ubuntu platforms, and also PPA repositories on the Ubuntu platform.
## Syntax
2016-09-22 12:43:57 +00:00
An `apt` resource block tests the contents of Apt and PPA repositories:
describe apt('path') do
it { should exist }
it { should be_enabled }
end
where
* `apt('path')` must specify an Apt or PPA repository
* `('path')` may be an `http://` address, a `ppa:` address, or a short `repo-name/ppa` address
* `exist` and `be_enabled` are a valid matchers for this resource
## 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" %>
### be_enabled
2016-09-22 12:43:57 +00:00
The `be_enabled` matcher tests if a package exists in the repository:
it { should be_enabled }
### 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 package exists on the system:
it { should exist }
### 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" %>
## Examples
2016-09-22 12:43:57 +00:00
The following examples show how to use this InSpec audit resource.
### Test if apt repository exists and is enabled
2016-09-22 12:43:57 +00:00
describe apt('http://ppa.launchpad.net/juju/stable/ubuntu') do
it { should exist }
it { should be_enabled }
end
### Verify that a PPA repository exists and is enabled
2016-09-22 12:43:57 +00:00
describe apt('ppa:nginx/stable') do
it { should exist }
it { should be_enabled }
end
### Verify that a repository is not present
2016-09-22 12:43:57 +00:00
describe apt('ubuntu-wine/ppa') do
it { should_not exist }
it { should_not be_enabled }
end