puppet-haproxy/manifests/install.pp

12 lines
262 B
ObjectPascal
Raw Normal View History

2022-12-03 23:38:31 -05:00
# @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,
}
}