service.pp 298 B

123456789101112131415
  1. # A description of what this class does
  2. #
  3. # @summary A short summary of the purpose of this class
  4. #
  5. # @example
  6. # include nginx::service
  7. class nginx::service {
  8. assert_private()
  9. service { $nginx::server_service:
  10. ensure => running,
  11. enable => true,
  12. hasrestart => true,
  13. }
  14. }