1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

redhat_subcription module accepts id in the pool argument [#3898]

This commit is contained in:
Pavel Malyshev 2016-08-30 14:43:07 +03:00 committed by Adrian Likins
parent a2907c4d5c
commit 7063db64c2

View file

@ -472,6 +472,8 @@ class RhsmPools(object):
for product in self.products: for product in self.products:
if r.search(product._name): if r.search(product._name):
yield product yield product
if r.search(product.PoolID):
yield product
def main(): def main():