Puppet Class: pureftpd::service
- Inherits:
- pureftpd::params
- Defined in:
- manifests/service.pp
Overview
Class: pureftpd::service
This class should be considered private.
6 7 8 9 10 11 12 13 |
# File 'manifests/service.pp', line 6
class pureftpd::service inherits pureftpd::params {
service { $pureftpd::params::service_name:
ensure => running,
enable => true,
hasrestart => true,
hasstatus => true,
}
}
|