Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/garethr/garethr-sysdig

Puppet module for installing sysdig
https://github.com/garethr/garethr-sysdig

Last synced: about 1 month ago
JSON representation

Puppet module for installing sysdig

Awesome Lists containing this project

README

        

Puppet module for installing
[Sysdig](http://www.sysdig.org/) from the [official
repository](http://www.sysdig.org/wiki/how-to-install-sysdig-for-linux/#manual-installation)
on Ubuntu or RedHat.

This module is also available on the [Puppet
Forge](https://forge.puppetlabs.com/garethr/sysdig)

[![Build
Status](https://secure.travis-ci.org/garethr/garethr-sysdig.png)](http://travis-ci.org/garethr/garethr-sysdig)

## Usage

The module includes a single class:

```puppet
include 'sysdig'
```

This will install sysdig as well as the apt or yum repository. On Ubuntu
this will also install the required linux kernel headers.

The class currently has only one parameter, to affect the ensure value
of the package. For instance if you want to remove sysdig you can use:

```puppet
class { 'sysdig':
ensure => absent,
}
```