now host list removes trailing/leading spaces

othewise hostnames were just 'fun'
pull/25726/head
Brian Coca 8 years ago
parent b9688c5497
commit a54666d31e

@ -61,6 +61,7 @@ class InventoryModule(BaseInventoryPlugin):
try:
for h in host_list.split(','):
h = h.strip()
if h:
try:
(hostnames, port) = self._expand_hostpattern(h)

@ -64,6 +64,7 @@ class InventoryModule(BaseInventoryPlugin):
try:
for h in host_list.split(','):
h = h.strip()
if h:
try:
(host, port) = parse_address(h, allow_ranges=False)

Loading…
Cancel
Save