Sha256: 5d3e377a150ecbc8d74454609a7e4dbf0993974bf806c2dc71792777f13fda6b

Contents?: true

Size: 1.6 KB

Versions: 5

Compression:

Stored size: 1.6 KB

Contents

---
title: About the packages Resource
platform: linux
---

# packages

Use the `packages` InSpec audit resource to test the properties of multiple packages on the system.

<br>

## Syntax

A `packages` resource block declares a regular expression search to select packages

    describe packages(/name/) do
      its('statuses') { should cmp 'installed' }
    end

<br>

## Examples

The following examples show how to use this InSpec audit resource.

### Verify that no `xserver` packages are installed

    describe package(/xserver/) do
      its('statuses') { should_not cmp 'installed' }
    end

### Verify all `openssl` packages match a certain version

    describe package(/openssl/) do
      its('versions') { should cmp '1.0.1e-42.el7' }
    end

### Verify that both the `i686` and `x86_64` versions of `libgcc` are installed

    describe package(/libgcc/) do
      its('architectures') { should include 'x86_64' }
      its('architectures') { should include 'i686' }
    end

<br>

## Matchers

For a full list of available matchers, please visit our [matchers page](https://www.inspec.io/docs/reference/matchers/).

### statuses

The `statuses` matcher tests if packages are installed on the system

    its('statuses') { should cmp 'installed' }

### versions

The `versions` matcher tests the versions of the packages installed on the system

    its('versions') { should cmp '3.4.0.2-4.el7' }

### architectures

The `architectures` matcher tests the architecture of packages installed on the system

    its('architectures') { should include 'i686' }

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
inspec-2.1.81 docs/resources/packages.md.erb
inspec-2.1.21 docs/resources/packages.md.erb
inspec-2.1.10 docs/resources/packages.md.erb
inspec-2.0.32 docs/resources/packages.md.erb
inspec-2.0.17 docs/resources/packages.md.erb