init.pp 255 B

12345678910111213
  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
  7. class nginx (
  8. String $server_package,
  9. String $server_service,
  10. ) {
  11. contain 'nginx::install'
  12. contain 'nginx::service'
  13. }