Puppet Class: rng::service

Inherits:
::rng::params
Defined in:
manifests/service.pp

Overview

Class: rng::service

Class to configure the service for 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
25
# File 'manifests/service.pp', line 16

class rng::service inherits ::rng::params {
  require ::rng::install
  require ::rng::config

  service { $::rng::params::service:
    ensure  => 'running',
    enable  => true,
    require => Class['::rng::install'],
  }
}