Set hostname to 'switch' on nxos_config toplevel setup/teardown tasks (#29127)
Using inventory_hostname breaks in our CI, as the inventory_hostname translates to a long UUID, exceeding the maximum length for a NXOS hostname.
This commit is contained in:
parent
2304706bd3
commit
8b6e3272f2
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
- name: setup
|
||||
nxos_config:
|
||||
lines: hostname {{ inventory_hostname_short }}
|
||||
lines: hostname switch
|
||||
provider: "{{ connection }}"
|
||||
match: none
|
||||
|
||||
|
@ -30,7 +30,7 @@
|
|||
|
||||
- name: teardown
|
||||
nxos_config:
|
||||
lines: hostname {{ inventory_hostname_short }}
|
||||
lines: hostname switch
|
||||
provider: "{{ connection }}"
|
||||
match: none
|
||||
|
||||
|
|
Loading…
Reference in a new issue