Puppet Class: cd_alloy::main::service

Inherits:
cd_alloy::params
Defined in:
manifests/main/service.pp

Summary

Class manages the alloy service

Overview

cd_alloy::main::service.pp Module name: cd_alloy Author: Arne Teuke (arne_teuke@confdroid.com)



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'manifests/main/service.pp', line 6

class cd_alloy::main::service (

) inherits cd_alloy::params {

  require cd_alloy::main::files

  service { $ay_service:
    ensure      => running,
    hasstatus   => true,
    hasrestart  => true,
    enable      => true,
  }
}