Puppet Class: sys::htop

Inherits:
sys::htop::params
Defined in:
manifests/htop.pp

Overview

Class: sys::htop

Installs htop, an interactive process viewer for GNU/Linux.

Parameters

ensure

The ensure value to use for the htop package. Defaults to ‘installed’.

package

The name of the package to install; the default depends on the OS, most likely it is ‘htop’.

Parameters:

  • ensure (Any) (defaults to: 'installed')
  • package (Any) (defaults to: $sys::htop::params::package)


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

class sys::htop(
  $ensure  = 'installed',
  $package = $sys::htop::params::package,
) inherits sys::htop::params {
  package { $package:
    ensure => $ensure,
  }
}