Puppet Class: haproxy::install
- Inherits:
- haproxy
- Defined in:
- manifests/install.pp
Overview
Private class
2 3 4 5 6 7 8 9 10 11 |
# File 'manifests/install.pp', line 2
class haproxy::install inherits haproxy {
if $caller_module_name != $module_name {
fail("Use of private class ${name} by ${caller_module_name}")
}
package { $package_name:
ensure => $_package_ensure,
alias => 'haproxy',
}
}
|