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
- Host: GitHub
- URL: https://github.com/garethr/garethr-sysdig
- Owner: garethr
- License: apache-2.0
- Created: 2014-08-10T17:54:23.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T14:44:16.000Z (over 1 year ago)
- Last Synced: 2025-05-09T09:49:00.719Z (about 1 month ago)
- Language: Ruby
- Size: 193 KB
- Stars: 6
- Watchers: 2
- Forks: 10
- Open Issues: 6
-
Metadata Files:
- Readme: README.markdown
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
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)[](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,
}
```