Drop the neutron dnsmasq config file options
authorDan Prince <dprince@redhat.com>
Wed, 8 Jun 2016 13:56:09 +0000 (09:56 -0400)
committerDan Prince <dprince@redhat.com>
Sat, 11 Jun 2016 10:46:17 +0000 (06:46 -0400)
Drop this because Mitaka neutron no longer requires
configuration of the tenant MTU.

Depends-On: I540ba5dc69d0506f71b59746efcce94c73f9317f
Change-Id: I2afeb94e676aed952063abfcadee67bcc50eded9

manifests/profile/base/neutron/dhcp.pp

index 180fd37..a313478 100644 (file)
 #
 # === Parameters
 #
-# [*neutron_dnsmasq_options*]
-#   (Optional)
-#   Defaults to hiera('neutron_dnsmasq_options')
-#
 # [*step*]
 #   (Optional) The current step in deployment. See tripleo-heat-templates
 #   for more details.
 #   Defaults to hiera('step')
 #
 class tripleo::profile::base::neutron::dhcp (
-  $neutron_dnsmasq_options = hiera('neutron_dnsmasq_options', ''),
   $step                    = hiera('step'),
 ) {
   if $step >= 4 {
     include ::tripleo::profile::base::neutron
     include ::neutron::agents::dhcp
 
-    file { '/etc/neutron/dnsmasq-neutron.conf':
-      content => $neutron_dnsmasq_options,
-      owner   => 'neutron',
-      group   => 'neutron',
-      notify  => Service['neutron-dhcp-service'],
-      require => Package['neutron'],
-    }
-
     Service<| title == 'neutron-server' |> -> Service <| title == 'neutron-dhcp' |>
   }
 }