Puppet Class: contrail::vrouter
- Inherits:
- contrail::params
- Defined in:
- manifests/vrouter.pp
Overview
Class: contrail::vrouter
Install and configure the vrouter service
Parameters:
- package_name
-
(optional) Package name for vrouter
10 11 12 13 14 15 16 17 18 19 20 |
# File 'manifests/vrouter.pp', line 10
class contrail::vrouter (
$package_name = $contrail::params::vrouter_package_name,
) inherits contrail::params {
anchor {'contrail::vrouter::start': } ->
class {'::contrail::vrouter::install': } ->
class {'::contrail::vrouter::config': } ~>
class {'::contrail::vrouter::service': }
anchor {'contrail::vrouter::end': }
}
|