Sha256: 498be8ef927fc1ac2014a30f630a6cc66ed0e7a341e0be750078837ef98fc3ca

Contents?: true

Size: 1.36 KB

Versions: 7

Compression:

Stored size: 1.36 KB

Contents

module Actions
  module Katello
    module Repository
      class CloneToVersion < Actions::Base
        # allows accessing the build object from the superior action
        attr_accessor :new_repository

        def plan(repository, content_view_version, incremental = false)
          content_view = content_view_version.content_view
          filters = incremental ? [] : content_view.filters.applicable(repository)
          self.new_repository = repository.build_clone(content_view: content_view,
                                                       version: content_view_version)
          sequence do
            plan_action(Repository::Create, new_repository, true, false)

            if new_repository.yum?
              plan_action(Repository::CloneYumContent, repository, new_repository, filters, !incremental,
                          :generate_metadata => !incremental, :index_content => !incremental, :simple_clone => incremental)
            elsif new_repository.docker?
              plan_action(Repository::CloneDockerContent, repository, new_repository)
            elsif new_repository.ostree?
              plan_action(Repository::CloneOstreeContent, repository, new_repository)
            elsif new_repository.file?
              plan_action(Repository::CloneFileContent, repository, new_repository)
            end
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
katello-3.2.1.1 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.1 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.0 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.0.rc3 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.0.rc2 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.0.rc1.1 app/lib/actions/katello/repository/clone_to_version.rb
katello-3.2.0.rc1 app/lib/actions/katello/repository/clone_to_version.rb