mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
change inventory_hostname to ansible_host to fix test (#32890)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
provider: "{{ cli }}"
|
||||
username: "{{ nxos_cli_user | default('admin') }}"
|
||||
password: "{{ nxos_cli_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
host: "{{ ansible_host }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
@@ -50,7 +50,7 @@
|
||||
provider: "{{ cli }}"
|
||||
username: "{{ nxos_cli_user | default('admin') }}"
|
||||
password: "{{ nxos_cli_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
host: "{{ ansible_host }}"
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
provider: "{{ nxapi }}"
|
||||
username: "{{ nxos_nxapi_user | default('admin') }}"
|
||||
password: "{{ nxos_nxapi_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
host: "{{ ansible_host }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
@@ -53,7 +53,7 @@
|
||||
provider: "{{ nxapi }}"
|
||||
username: "{{ nxos_nxapi_user | default('admin') }}"
|
||||
password: "{{ nxos_nxapi_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
host: "{{ ansible_host }}"
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
Reference in New Issue
Block a user