Sha256: ba702a7e2548ba773bba4a87431288be6b354a7af255ba17c06099be27de97d0
Contents?: true
Size: 1.93 KB
Versions: 1
Compression:
Stored size: 1.93 KB
Contents
# # Copyright 2014 Red Hat, Inc. # # This software is licensed to you under the GNU General Public # License as published by the Free Software Foundation; either version # 2 of the License (GPLv2) or (at your option) any later version. # There is NO WARRANTY for this software, express or implied, # including the implied warranties of MERCHANTABILITY, # NON-INFRINGEMENT, or FITNESS FOR A PARTICULAR PURPOSE. You should # have received a copy of GPLv2 along with this software; if not, see # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. module Actions module Katello module System module Package class Remove < Actions::EntryAction include Helpers::Presenter def plan(system, packages) action_subject(system, :packages => packages) plan_action(Pulp::Consumer::ContentUninstall, consumer_uuid: system.uuid, type: 'rpm', args: packages) end def humanized_name _("Remove package") end def humanized_input [humanized_package_names.join(', ')] + super end def humanized_package_names input[:packages].inject([]) do |result, package| if package.is_a?(Hash) new_name = package.include?(:name) ? package[:name] : "" new_name += '-' + package[:version] if package.include?(:version) new_name += '.' + package[:release] if package.include?(:release) new_name += '.' + package[:arch] if package.include?(:arch) result << new_name else result << package end end end def presenter Helpers::Presenter::Delegated.new( self, planned_actions(Pulp::Consumer::ContentUninstall)) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katello-2.2.2 | app/lib/actions/katello/system/package/remove.rb |