Sha256: 3803a73567ad7d1968f8edd624c18f21b5a4ba2bf716e5093aa9adab98c3a2f1
Contents?: true
Size: 553 Bytes
Versions: 95
Compression:
Stored size: 553 Bytes
Contents
module Actions module Katello module Repository class UpdateMetadataSync < Actions::Base def plan(repository) sequence do plan_action(Katello::Repository::MetadataGenerate, repository) concurrence do ::SmartProxy.with_repo(repository).each do |capsule| next if capsule.pulp_primary? plan_action(Katello::CapsuleContent::Sync, capsule, repository_id: repository.id) end end end end end end end end
Version data entries
95 entries across 95 versions & 1 rubygems