Puppet Class: vsftpd::install
- Defined in:
- manifests/install.pp
Overview
Installs vsftpd and optionally manages the vsftpd group and user.
6 7 8 9 10 11 12 13 |
# File 'manifests/install.pp', line 6
class vsftpd::install {
assert_private()
package { 'vsftpd':
ensure => $vsftpd::package_ensure
}
}
|