Sha256: 67586d89dfeb3c0013cad1466c67a41c183374062c044e221be0b94e0d2ec08c
Contents?: true
Size: 943 Bytes
Versions: 14
Compression:
Stored size: 943 Bytes
Contents
module HammerCLIKatello class HostCollectionPackageCommand < HammerCLIKatello::Command command_name "package" desc "Manage packages on your host collections. "\ "These commands are no longer available. "\ "Use the remote execution equivalent" class InstallCommand < HammerCLIKatello::Command command_name "install" def self.rex_feature "katello_package_install" end include UnsupportedKatelloAgentCommandHelper end class UpdateCommand < HammerCLIKatello::Command command_name "update" def self.rex_feature "katello_package_update" end include UnsupportedKatelloAgentCommandHelper end class RemoveCommand < HammerCLIKatello::Command command_name "remove" def self.rex_feature "katello_package_remove" end include UnsupportedKatelloAgentCommandHelper end autoload_subcommands end end
Version data entries
14 entries across 14 versions & 1 rubygems