Sha256: 617b0c7c8297aef5723e59a4b7c1f4e3fbc1aebc15d5a6c9203b4042af0ed861
Contents?: true
Size: 771 Bytes
Versions: 14
Compression:
Stored size: 771 Bytes
Contents
module Actions module Katello module Repository class Clear < Actions::Base def plan(repo) [Pulp::Repository::RemoveRpm, Pulp::Repository::RemoveErrata, Pulp::Repository::RemovePackageGroup, Pulp::Repository::RemoveDistribution, Pulp::Repository::RemoveYumMetadataFile, Pulp::Repository::RemoveFile, Pulp::Repository::RemovePuppetModule, Pulp::Repository::RemoveDockerManifest, Pulp::Repository::RemoveDockerManifestList, Pulp::Repository::RemoveDockerTag, Pulp::Repository::RemoveDockerBlob].each do |action_class| plan_action(action_class, pulp_id: repo.pulp_id) end end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems