Forge Home

abrt

Configuring abrt (Daemon monitoring crashes)

19,019 downloads

18,022 latest version

4.6 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.2.3 (latest)
  • 0.1.0
released Apr 15th 2015
This version is compatible with:
  • ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'CERNOps-abrt', '0.2.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add CERNOps-abrt
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install CERNOps-abrt --version 0.2.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: abrt

Documentation

CERNOps/abrt — version 0.2.3 Apr 15th 2015

Puppet Forge Build Status

abrt module

This is the abrt module. It can be used to maintain both the abrt daemon and libreport.

Basic usage

Ensure that abrtd is running:

class { 'abrt': }

Ensure that abrtd is not running:

class { 'abrt':
  active => false,
}

Dependencies

  • stdlib (join)
  • inifile (ini_setting)

Configuration options

The abrt module supports all configuration options in the following files:

  • abrt.conf
  • abrt-action-save-package-data.conf

The defaults used are the Scientific Linux default values:

  class { 'abrt':
    active => true,
    maxcrashreportssize => '1000',
    dumplocation => '/var/spool/abrt',
    deleteuploaded => 'no',
    opengpgcheck => 'yes',
    blacklist => ['nspluginwrapper', 'valgrind', 'strace', 'mono-core'],
    blacklistedpaths => ['/usr/share/doc/*', '*/example*', '/usr/bin/nspluginviewer', '/usr/lib/xulrunner-*/plugin-container'],
    processunpackaged => 'no',
  }

Other variables allow to configure libreport:

  • abrt_mail: Send notifications using mailx
  • abrt_mailx_to: Specify who to send the reports to ('false' to enable defaults)
  • abrt_mailx_from: Specify who should be appearing as the sender of reports ('false' to enable defaults)
  • abrt_mailx_binary: Set the binary option for mailx ('false' to enable defaults)
  • abrt_mailx_detailed_subject: Set a subject optimized for Puppet ('fqdn [hostgroup] abrt crash report for program [package]')
  • abrt_mailx_send_duplicate: Send notification for duplicated events ([true]/false)
  • abrt_sosreport: Generate sosreport ([true]/false)
  • abrt_backtrace: Control backtrace generation, requires gdb ([false]/full/simple)