From 10c7927096ec921d0b03c41096ea23d9ddc36e59 Mon Sep 17 00:00:00 2001 From: "Eric D. Helms" Date: Fri, 31 Mar 2017 12:12:48 -0400 Subject: [PATCH] Fix dependency cycle from Candlepin exchange migration --- manifests/init.pp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/manifests/init.pp b/manifests/init.pp index a4a5f6b4..4275af61 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -100,6 +100,13 @@ class { '::katello::install': } ~> class { '::katello::config': } ~> class { '::certs::qpid': } ~> + class { '::qpid': + ssl => true, + ssl_cert_db => $::certs::nss_db_dir, + ssl_cert_password_file => $::certs::qpid::nss_db_password_file, + ssl_cert_name => 'broker', + interface => 'lo', + } ~> class { '::certs::candlepin': } ~> class { '::candlepin': user_groups => $katello::user_groups, @@ -121,13 +128,6 @@ qpid_ssl_cert => $::certs::qpid::client_cert, qpid_ssl_key => $::certs::qpid::client_key, } ~> - class { '::qpid': - ssl => true, - ssl_cert_db => $::certs::nss_db_dir, - ssl_cert_password_file => $::certs::qpid::nss_db_password_file, - ssl_cert_name => 'broker', - interface => 'lo', - } ~> class { '::certs::qpid_client': } ~> class { '::pulp': oauth_enabled => true,