Puppet Class: rng::install
- Inherits:
- ::rng
- Defined in:
- manifests/install.pp
Overview
Class: rng::install
Class to install rng-tools
Authors
Scott Brimhall <scott@brimh.al>
Copyright
Copyright 2017 Scott Brimhall, unless otherwise noted.
16 17 18 19 20 21 22 23 24 |
# File 'manifests/install.pp', line 16
class rng::install (
$version = $::rng::version,
) inherits ::rng {
require ::rng::params
package { $::rng::params::package:
ensure => $version,
}
}
|