fuel-library/deployment/puppet/haproxy/manifests/install.pp
Stanislaw Bogatkin 1a0f3c0a6d Sync puppet haproxy module from upstream
UP link: https://github.com/puppetlabs/puppetlabs-haproxy
UP commit sha: 4c94112afbb143f54caae0967e29261b41179017
Implements: blueprint ssl-endpoints

Change-Id: Icb96703ad50b111af463cb6c4094091a251ca680
2015-06-18 10:12:07 -05:00

12 lines
280 B
Puppet

# Private class
class haproxy::install inherits haproxy {
if $caller_module_name != $module_name {
fail("Use of private class ${name} by ${caller_module_name}")
}
package { $haproxy::package_name:
ensure => $haproxy::_package_ensure,
alias => 'haproxy',
}
}