From 303b7fc54ea6c2115598bc0bbc8767776c0cee34 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Sat, 22 Jan 2022 21:40:19 +0900 Subject: [PATCH] Clean up unused parameters Change-Id: Id165bd088e32c19f5f8ff31ab6aa03b037ebe63c --- fixtures/scenario000.pp | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/fixtures/scenario000.pp b/fixtures/scenario000.pp index b3a510016..32a4cb012 100644 --- a/fixtures/scenario000.pp +++ b/fixtures/scenario000.pp @@ -31,19 +31,14 @@ if $::osfamily == 'RedHat' { case $::osfamily { 'Debian': { - $ipv6 = false - # vitrage are not packaged yet in debian/ubuntu - $enable_vitrage = false - $om_rpc = 'rabbit' - $om_notify = 'rabbit' - $notification_topics = $::os_service_default + $ipv6 = false + $om_rpc = 'rabbit' + $om_notify = 'rabbit' } 'RedHat': { - $ipv6 = true - $enable_vitrage = false - $om_rpc = 'amqp' - $om_notify = 'rabbit' - $notification_topics = ['notifications', 'vitrage_notifications'] + $ipv6 = true + $om_rpc = 'amqp' + $om_notify = 'rabbit' } default: { fail("Unsupported osfamily (${::osfamily})")