Puppet Class: sys::parted

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

Overview

Class: sys::parted

Installs GNU Parted, used by Linux systems to manipulate partition tables.

Parameters

ensure

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

package

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

Parameters:

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


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

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