Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T14:44:16.000Z (about 1 year ago)
- Last Synced: 2024-11-02T12:23:43.830Z (about 2 months ago)
- Language: Ruby
- Size: 193 KB
- Stars: 6
- Watchers: 3
- Forks: 11
- 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)[![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,
}
```