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’.
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,
}
}
|