File: networking_baremetal.pp

package info (click to toggle)
puppet-module-neutron 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,772 kB
  • sloc: ruby: 13,048; python: 33; sh: 15; makefile: 10
file content (24 lines) | stat: -rw-r--r-- 740 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This class installs and configures the networking-baremetal Neutron plugin
#
# == Class: neutron::plugins::ml2::networking_baremetal
#
# === Parameters
#
# [*package_ensure*]
#   (optional) The intended state of the python-networking-baremetal
#   package, i.e. any of the possible values of the 'ensure'
#   property for a package resource type.
#   Defaults to 'present'
#
class neutron::plugins::ml2::networking_baremetal (
  Stdlib::Ensure::Package $package_ensure = 'present',
) {
  include neutron::deps
  include neutron::params

  package { 'python-networking-baremetal':
    ensure => $package_ensure,
    name   => $neutron::params::networking_baremetal_package,
    tag    => ['openstack', 'neutron-plugin-ml2-package'],
  }
}