mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
make --limit take a , as a separator as well as ; or :
This commit is contained in:
parent
8afa3abd41
commit
d63fa6f026
1 changed files with 1 additions and 0 deletions
|
@ -331,6 +331,7 @@ class Inventory(object):
|
|||
if subset_pattern is None:
|
||||
self._subset = None
|
||||
else:
|
||||
subset_pattern = subset_pattern.replace(',',':')
|
||||
self._subset = subset_pattern.replace(";",":").split(":")
|
||||
|
||||
def lift_restriction(self):
|
||||
|
|
Loading…
Reference in a new issue