no error, but service is not installed.
email: [email protected]
I used the below and was solved.
package { 'vsftpd':
ensure => ‘present’,
}
service { ‘vsftpd’:
ensure => ‘running’,
enable => true,
require => Package[‘vsftpd’],
}
node default {}
node “stapp01”, “stapp02”, “stapp03” {
include vsftpdconf
}
1 Like