aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-05-11 10:49:10 +0000
committerGerrit Code Review <review@openstack.org>2016-05-11 10:49:10 +0000
commit50b98562649e4cd0b3755355c0071ee2d4200981 (patch)
treeef459253a8961488098cd61a58fe3c2065983f6a
parent74c573eabbed37e689f1ffefdbe33c9cb3f19de8 (diff)
parent4966c016bbf0b4c5015268a5f14ae173f4627ada (diff)
Merge "Add the neutron-dnsmasq.conf to neutron profile"
-rw-r--r--manifests/profile/base/neutron/dhcp.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/profile/base/neutron/dhcp.pp b/manifests/profile/base/neutron/dhcp.pp
index 1d7cc10..4d5bb28 100644
--- a/manifests/profile/base/neutron/dhcp.pp
+++ b/manifests/profile/base/neutron/dhcp.pp
@@ -48,6 +48,14 @@ class tripleo::profile::base::neutron::dhcp (
enabled => $enabled
}
+ 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' |>
}
}