Sha256: fb883c6525092119809823057cbc24a2353bb458bac54821053fac95508e76d9

Contents?: true

Size: 747 Bytes

Versions: 37

Compression:

Stored size: 747 Bytes

Contents

namespace :katello do
  desc "Remove orphaned and unneeded content/subscription facets."
  task :clean_orphaned_facets => ["environment"] do
    User.current = User.anonymous_admin
    remove_orphan_facets
  end

  def remove_orphan_facets
    ::Katello::Host::ContentFacet.select { |c| c.host.nil? }&.each do |content_facet|
      Rails.logger.info "Deleting content facet with id: #{content_facet.id}\n"
      content_facet.destroy
    end
    Katello::Host::SubscriptionFacet.select { |s| s.host.nil? }&.each do |subscription_facet|
      Rails.logger.info "Deleting subscription facet with id: #{subscription_facet.id}\n"
      subscription_facet.destroy
    end
  rescue RuntimeError => e
    Rails.logger.error "Task failed: #{e}"
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
katello-4.14.2 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.15.0 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.15.0.rc2 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.15.0.rc1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.0 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.0.rc3 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.0.rc2 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.0.rc1.1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.14.0.rc1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.13.1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.13.0 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.12.1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.13.0.rc1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.12.0 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.12.0.rc3 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.12.0.rc2 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.12.0.rc1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.11.1 lib/katello/tasks/clean_orphaned_facets.rb
katello-4.11.0 lib/katello/tasks/clean_orphaned_facets.rb