Puppet Class: ssh::service

Defined in:
manifests/service.pp

Summary

This class is meant to be called from ssh. It ensure the service is running.

Overview



3
4
5
6
7
8
9
10
# File 'manifests/service.pp', line 3

class ssh::service {
  service { $::ssh::service_name:
  ensure     => running,
  enable     => true,
  hasstatus  => true,
    hasrestart => true,
  }
}