Puppet Class: vsftpd::service
- Defined in:
- manifests/service.pp
Overview
Ensures the vsftpd service is running.
5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/service.pp', line 5
class vsftpd::service {
assert_private()
service { 'vsftpd':
ensure => 'running',
enable => true,
hasrestart => true,
hasstatus => true,
}
}
|