Puppet Class: rkhunter::package

Defined in:
manifests/package.pp

Overview

Class: rkhunter::package

This module contain the package configuration for rkhunter

Parameters:

Actions:

Requires:

Sample Usage:



13
14
15
16
17
18
19
20
21
# File 'manifests/package.pp', line 13

class rkhunter::package {
  package { $rkhunter::params::package_common: ensure => installed; }
  if $::osfamily == 'Debian' {
    package { $rkhunter::params::package_unhide: ensure => installed; }
  }
  if $::osfamily == 'Gentoo' {
    package { $rkhunter::params::package_unhide: ensure => installed; }
  }
}