From 6c88e13ca39015ab034aa7396752a72141e3cb18 Mon Sep 17 00:00:00 2001 From: Ewoud Kohl van Wijngaarden Date: Tue, 12 Sep 2017 12:16:35 +0200 Subject: [PATCH] Don't pass $deployment_url to candlepin This is unused and https://github.com/Katello/puppet-candlepin/pull/82 was opened to remove this parameter. --- manifests/candlepin.pp | 2 -- spec/classes/katello_candlepin_spec.rb | 1 - 2 files changed, 3 deletions(-) diff --git a/manifests/candlepin.pp b/manifests/candlepin.pp index 76391f6a..768b7aa3 100644 --- a/manifests/candlepin.pp +++ b/manifests/candlepin.pp @@ -3,7 +3,6 @@ Variant[Array[String], String] $user_groups = $::katello::user_groups, String $oauth_key = $::katello::oauth_key, String $oauth_secret = $::katello::oauth_secret, - String $deployment_url = $::katello::deployment_url, String $db_host = $::katello::candlepin_db_host, Optional[Integer[0, 65535]] $db_port = $::katello::candlepin_db_port, String $db_name = $::katello::candlepin_db_name, @@ -23,7 +22,6 @@ user_groups => $user_groups, oauth_key => $oauth_key, oauth_secret => $oauth_secret, - deployment_url => $deployment_url, ca_key => $::certs::ca_key, ca_cert => $::certs::ca_cert_stripped, keystore_password => $::certs::candlepin::keystore_password, diff --git a/spec/classes/katello_candlepin_spec.rb b/spec/classes/katello_candlepin_spec.rb index 8dd8993e..cca5c5a1 100644 --- a/spec/classes/katello_candlepin_spec.rb +++ b/spec/classes/katello_candlepin_spec.rb @@ -11,7 +11,6 @@ :user_groups => ['foreman'], :oauth_key => 'katello', :oauth_secret => 'secret', - :deployment_url => '/katello', :db_host => 'localhost', :db_port => 5432, :db_name => 'candlepin',