Puppet Class: lcgdm::dli::service
- Inherits:
- lcgdm::dli::params
- Defined in:
- manifests/dli/service.pp
Overview
1 2 3 4 5 6 7 8 9 10 11 |
# File 'manifests/dli/service.pp', line 1
class lcgdm::dli::service () inherits lcgdm::dli::params {
Class[lcgdm::dli::install] -> Class[lcgdm::dli::service]
service { 'lfc-dli':
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
subscribe => File['/etc/sysconfig/lfc-dli'],
}
}
|