Sha256: 1594c6791403e8465f5202e04898fc555bdb56c440faae9a540387cd8de087af
Contents?: true
Size: 866 Bytes
Versions: 60
Compression:
Stored size: 866 Bytes
Contents
module Actions module Katello module Repository class MetadataGenerate < Actions::Base def plan(repository, options = {}) source_repository = options.fetch(:source_repository, nil) source_repository ||= repository.target_repository if repository.link? smart_proxy = options.fetch(:smart_proxy, SmartProxy.pulp_primary) matching_content = options.fetch(:matching_content, false) force_publication = options.fetch(:force_publication, false) plan_action(Pulp3::Orchestration::Repository::GenerateMetadata, repository, smart_proxy, :force_publication => force_publication, :source_repository => source_repository, :matching_content => matching_content) end end end end end
Version data entries
60 entries across 60 versions & 1 rubygems