diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-05-18 09:52:16 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-05-18 09:52:16 +0000 |
commit | 93eeb887a7bae59c43c9e864c20d3c844592f68b (patch) | |
tree | 95f13fce2bc632a2d2c3f49eada534a24dfbfed8 /manifests/profile/base/neutron/server.pp | |
parent | a555a26421deda2f601e2127a9ecaf0b4590a11f (diff) | |
parent | 837643416d6fc636336d74b1da800a295c3d49a3 (diff) |
Merge "Remove manage_service and enabled from TripleO manifests"
Diffstat (limited to 'manifests/profile/base/neutron/server.pp')
-rw-r--r-- | manifests/profile/base/neutron/server.pp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/manifests/profile/base/neutron/server.pp b/manifests/profile/base/neutron/server.pp index 20127ed..14af56e 100644 --- a/manifests/profile/base/neutron/server.pp +++ b/manifests/profile/base/neutron/server.pp @@ -22,14 +22,6 @@ # (Optional) Whether to run Neutron DB sync operations # Defaults to undef # -# [*manage_service*] -# (Optional) Whether to manage the Neutron Server service -# Defaults to undef -# -# [*enabled*] -# (Optional) Whether to enable the Neutron Server service -# Defaults to undef -# # [*step*] # (Optional) The current step in deployment. See tripleo-heat-templates # for more details. @@ -37,8 +29,6 @@ # class tripleo::profile::base::neutron::server ( $sync_db = true, - $manage_service = undef, - $enabled = undef, $step = hiera('step'), ) { @@ -53,8 +43,6 @@ class tripleo::profile::base::neutron::server ( class { '::neutron::server': sync_db => $sync_db, - manage_service => $manage_service, - enabled => $enabled } } } |