Sha256: 028bac13a37f21cf0881986d3841fc8506c0bb333e38dc8d57a093d3fbd86086

Contents?: true

Size: 1.12 KB

Versions: 8

Compression:

Stored size: 1.12 KB

Contents

module Actions
  module Katello
    module Foreman
      class ContentUpdate < Actions::Katello::Foreman::Abstract
        middleware.use ::Actions::Middleware::RemoteAction

        def plan(environment, content_view, repo = nil)
          plan_self(environment_id: environment.id,
                    content_view_id: content_view.id,
                    repository_id: repo.try(:id))
        end

        input_format do
          param :environment_id
          param :content_view_id
        end

        def finalize
          User.as_anonymous_admin do
            content_view = ::Katello::ContentView.find(input[:content_view_id])
            repository = ::Katello::Repository.find(input[:repository_id]) if input[:repository_id]

            if content_view.default? && repository && repository.distribution_bootable?
              os = Redhat.find_or_create_operating_system(repository)
              arch = Architecture.where(:name => repository.distribution_arch).first_or_create!
              os.architectures << arch unless os.architectures.include?(arch)
            end
          end
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
katello-4.15.0.rc2 app/lib/actions/katello/foreman/content_update.rb
katello-4.15.0.rc1 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.1 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.0 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.0.rc3 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.0.rc2 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.0.rc1.1 app/lib/actions/katello/foreman/content_update.rb
katello-4.14.0.rc1 app/lib/actions/katello/foreman/content_update.rb