Sha256: 4a892766404b6179af7ac63fc19877983e277629adad8ef8095d7cf8d3f6640d
Contents?: true
Size: 690 Bytes
Versions: 46
Compression:
Stored size: 690 Bytes
Contents
module Actions module Katello module ContentView class CapsuleSync < Actions::Base def humanized_name _("Sync Content View on Smart Proxy(ies)") end def plan(content_view, environment) sequence do concurrence do smart_proxies = SmartProxy.with_environment(environment) unless smart_proxies.blank? plan_action(::Actions::BulkAction, ::Actions::Katello::CapsuleContent::Sync, smart_proxies, :content_view_id => content_view.id, :environment_id => environment.id) end end end end end end end end
Version data entries
46 entries across 46 versions & 1 rubygems