mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 23:21:22 -07:00
now properly uses default port if defined
This commit is contained in:
parent
496186f5de
commit
f16b745f17
3 changed files with 6 additions and 3 deletions
|
@ -19,7 +19,6 @@
|
|||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible import constants as C
|
||||
from ansible.inventory.group import Group
|
||||
from ansible.utils.vars import combine_vars
|
||||
|
||||
|
@ -76,7 +75,7 @@ class Host:
|
|||
self.ipv4_address = name
|
||||
self.ipv6_address = name
|
||||
|
||||
if port and port != C.DEFAULT_REMOTE_PORT:
|
||||
if port:
|
||||
self.set_variable('ansible_ssh_port', int(port))
|
||||
|
||||
self._gathered_facts = False
|
||||
|
|
|
@ -108,7 +108,7 @@ class InventoryParser(object):
|
|||
if len(tokens) == 0:
|
||||
continue
|
||||
hostname = tokens[0]
|
||||
port = C.DEFAULT_REMOTE_PORT
|
||||
port = None
|
||||
# Three cases to check:
|
||||
# 0. A hostname that contains a range pesudo-code and a port
|
||||
# 1. A hostname that contains just a port
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue