Puppet Class: storm::frontend::service

Defined in:
manifests/frontend/service.pp

Summary

StoRM Frontend service class

Overview



3
4
5
6
7
8
9
# File 'manifests/frontend/service.pp', line 3

class storm::frontend::service {
  service { 'storm-frontend-server':
    ensure  => running,
    enable  => true,
    require => Package['storm-frontend-mp'],
  }
}