puppet-haproxy/manifests/init.pp

14 lines
368 B
ObjectPascal
Raw Permalink Normal View History

2022-12-03 23:38:31 -05:00
# @summary
# A puppet module to manage a system's Haproxy installation.
#
# @example
# class { 'haproxy':
#
# }
class haproxy (
String[1] $package_ensure = 'present',
String $package_name = $haproxy::params::package_name,
) inherits haproxy::params {
contain haproxy::install
}