Puppet Class: subscription_manager::service

Defined in:
manifests/service.pp

Overview

Class: subscription_manager::service

This class is meant to be called from subscription_manager. It ensure the service is running.

Authors


  • GaĆ«l Chamoulaud <gchamoul@redhat.com>

  • JD Powell <waveclaw@waveclaw.net>

Copyright


Copyright 2016 JD Powell <waveclaw@waveclaw.net>



18
19
20
21
22
23
24
25
26
# File 'manifests/service.pp', line 18

class subscription_manager::service {

  service { $::subscription_manager::service_name:
    ensure     => $::subscription_manager::service_status,
    hasstatus  => true,
    hasrestart => true,
  }

}