aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/base/neutron/linuxbridge.pp
blob: 36be214b2dbb144dc83f1745e4433710eeba34e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# == Class: tripleo::profile::base::neutron::linuxbridge
#
# Neutron linuxbridge agent profile for tripleo
#
# === Parameters
#
# [*step*]
#   (Optional) The current step in deployment. See tripleo-heat-templatee
#   for more details.
#   Defaults to hiera('step')
#
class tripleo::profile::base::neutron::linuxbridge(
    $step           = Integer(hiera('step')),
) {
    include ::tripleo::profile::base::neutron

    if $step >= 5 {
        include ::neutron::agents::ml2::linuxbridge
    }
}