hammer_cli_katello 1.4.0 → 1.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0a00c7f5dd067ab0cc8203da1989be46411dc15ed1079442b38bf27e4c1c5eef
4
- data.tar.gz: 4088650b9e19e79031e912cfc1f3c49ec11ef448e41c5c97cb41820fe5474bcc
3
+ metadata.gz: d1ff46aa39c3547dea6343f671d10d5ae603ecee1d4e2c416ddea5b1884de3e0
4
+ data.tar.gz: 5c3a848bcf07dba7d725a882a8a5e667841327f08ec738c100375c910466bfef
5
5
  SHA512:
6
- metadata.gz: 0b638de29d5f9ebf39fa1962ec41d316f23579c64f9b0bd387bc3bd0323d447368fb9dacf283ea8e10d898e1d2bd4e6956c99f435080f38c835092c154e85f03
7
- data.tar.gz: 8c59ab30460634b1098d74933284052ee98492897a04d17358166597fb2d53e2412e521228486b5df37c8d8cb2f254565eb79ccb3cc29e5dfd8cfc9b42b4e399
6
+ metadata.gz: 2fe7eddfe5ec1ebb616afeadd16c57ccba45100997b00dd69912284c27fc94467d22bc2d0023685237e7c744f3eb257a2c8d92d31a5589eb520a3f2e5fb2c484
7
+ data.tar.gz: 615ed4f84b86117d9b78543c1d8b5a09b9e21240d4f2fa9d5c2899c5a0d229e4ea1da2d008b03095473c90f9ea5cb43a024d122168a0b29a3578affd0d62b040
@@ -86,7 +86,7 @@ module HammerCLIKatello
86
86
  end
87
87
 
88
88
  label _("GPG Key") do
89
- from :gpg_key do
89
+ from :content_credential do
90
90
  field :id, _("Id"), Fields::Field, :hide_blank => true
91
91
  field :name, _("Name"), Fields::Field, :hide_blank => true
92
92
  end
@@ -530,7 +530,6 @@ module HammerCLIKatello
530
530
  end
531
531
  end
532
532
  end
533
- # rubocop:enable ClassLength
534
533
 
535
534
  class RemoveContentCommand < HammerCLIKatello::SingleResourceCommand
536
535
  extend RepositoryScopedToProduct
@@ -558,6 +557,32 @@ module HammerCLIKatello
558
557
  end
559
558
  end
560
559
 
560
+ class ReclaimSpaceCommand < HammerCLIKatello::SingleResourceCommand
561
+ extend RepositoryScopedToProduct
562
+ include HammerCLIForemanTasks::Async
563
+ include OrganizationOptions
564
+ validate_repo_name_requires_product_options
565
+ action :reclaim_space
566
+ command_name "reclaim-space"
567
+ desc _("Reclaim space from an On Demand repository")
568
+
569
+ success_message _("Repository space reclaimed.")
570
+ failure_message _("Could not reclaim the repository")
571
+
572
+ validate_options :before, 'IdResolution' do
573
+ organization_options = [:option_organization_id, :option_organization_name, \
574
+ :option_organization_label]
575
+
576
+ if option(:option_product_name).exist?
577
+ any(*organization_options).required
578
+ end
579
+ end
580
+
581
+ build_options do |o|
582
+ o.expand.including(:products)
583
+ end
584
+ end
585
+ # rubocop:enable ClassLength
561
586
  autoload_subcommands
562
587
  end
563
588
  end
@@ -1,5 +1,5 @@
1
1
  module HammerCLIKatello
2
2
  def self.version
3
- @version ||= Gem::Version.new('1.4.0')
3
+ @version ||= Gem::Version.new('1.4.1')
4
4
  end
5
5
  end