init.pp 233 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. ) {
  10. package { $server_package:
  11. ensure => installed,
  12. }
  13. }