Skip to content

Commit

Permalink
Fixes #33381 - Add back Puppet search to Foreman
Browse files Browse the repository at this point in the history
  • Loading branch information
chris1984 committed Sep 1, 2021
1 parent eee10c8 commit fb2275d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/hammer_cli_katello/foreman_search_options_creators.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@ def create_ptables_search_options(options, mode = nil)
create_search_options_without_katello_api(options, api.resource(:ptables), mode)
end

def create_puppet_ca_proxies_search_options(options, mode = nil)
create_search_options_without_katello_api(options, api.resource(:puppet_ca_proxies), mode)
end

def create_puppet_proxies_search_options(options, mode = nil)
create_search_options_without_katello_api(options, api.resource(:puppet_proxies), mode)
end

def create_puppetclasses_search_options(options, mode = nil)
create_search_options_without_katello_api(options, api.resource(:puppetclasses), mode)
end

def create_subnets_search_options(options, mode = nil)
create_search_options_without_katello_api(options, api.resource(:subnets), mode)
end
Expand Down

0 comments on commit fb2275d

Please sign in to comment.