install.pp 248 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::install
  7. class nginx::install {
  8. assert_private()
  9. package { $nginx::server_package:
  10. ensure => installed,
  11. }
  12. }