puppet-haproxy/manifests/install.pp

12 lines
262 B
Puppet

# @summary Manages the state of the Haproxy package.
#
# This class will install the haproxy package is desired.
#
# @example
# include haproxy::install
class haproxy::install {
package { $haproxy::package_name:
ensure => $haproxy::package_ensure,
}
}