Skip to content

Commit

Permalink
Remove obsolete crl option
Browse files Browse the repository at this point in the history
- As of versions candlepin-4.0.8-1 and candlepin-4.1.6-1 the
  CRL file no longer exists and this option is obsolete
  • Loading branch information
nikosmoum committed Jul 15, 2022
1 parent e732c42 commit 1c30740
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
# @param db_password
# The Candlepin database password
#
# @param crl_file
# The Certificate Revocation File for Candlepin
#
# @param user_groups
# The user groups for the Candlepin tomcat user
#
Expand Down Expand Up @@ -182,7 +179,6 @@
String $db_name = 'candlepin',
String $db_user = 'candlepin',
Variant[Sensitive[String], String] $db_password = $candlepin::params::db_password,
Stdlib::Absolutepath $crl_file = '/var/lib/candlepin/candlepin-crl.crl',
Variant[Array[String], String] $user_groups = [],
Stdlib::Absolutepath $log_dir = '/var/log/candlepin',
String $oauth_key = 'candlepin',
Expand Down
1 change: 0 additions & 1 deletion spec/classes/candlepin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
'candlepin.auth.oauth.consumer.candlepin.secret=candlepin',
'candlepin.ca_key=/etc/candlepin/certs/candlepin-ca.key',
'candlepin.ca_cert=/etc/candlepin/certs/candlepin-ca.crt',
'candlepin.crl.file=/var/lib/candlepin/candlepin-crl.crl',
'log4j.logger.org.hibernate.internal.SessionImpl=ERROR',
'candlepin.async.jobs.ExpiredPoolsCleanupJob.schedule=0 0 0 * * ?',
'candlepin.audit.hornetq.config_path=/etc/candlepin/broker.xml',
Expand Down
1 change: 0 additions & 1 deletion templates/candlepin.conf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ module.config.adapter_module=<%= scope['candlepin::adapter_module'] %>

candlepin.ca_key=<%= scope['candlepin::ca_key'] %>
candlepin.ca_cert=<%= scope['candlepin::ca_cert'] %>
candlepin.crl.file=<%= scope['candlepin::crl_file'] %>
<% unless [nil, :undefined, :undef].include?(scope['candlepin::ca_key_password_unsensitive']) -%>
candlepin.ca_key_password=<%= scope['candlepin::ca_key_password_unsensitive'] %>
<%- end -%>
Expand Down

0 comments on commit 1c30740

Please sign in to comment.