Puppet Class: winrm::service
- Defined in:
- manifests/service.pp
Summary
Ensure the service is available and running and set to Automatic on boot.Overview
3 4 5 6 7 8 9 |
# File 'manifests/service.pp', line 3
class winrm::service {
service { 'WinRM':
ensure => running,
# Sets startup type to 'Automatic'
enable => true,
}
}
|