Puppet Class: osg::ce::service

Defined in:
manifests/ce/service.pp

Summary

Manage OSG CE Services

Overview



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/ce/service.pp', line 3

class osg::ce::service {

  service { 'condor-ce':
    ensure     => 'running',
    enable     => true,
    hasstatus  => true,
    hasrestart => true,
    subscribe  => [
      File['/etc/grid-security/hostcert.pem'],
      File['/etc/grid-security/hostkey.pem'],
    ],
  }

  service { 'gratia-probes-cron':
    ensure     => $osg::ce::gratia_probes_cron_service_ensure,
    enable     => $osg::ce::gratia_probes_cron_service_enable,
    hasstatus  => true,
    hasrestart => true,
  }

}