mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
hostname parameter should be host_name (#35798)
the hostname parameter is wrong. It will throw an error: "Unsupported parameters for (vyos_system) module: hostname Supported parameters include: domain_name, domain_search, host, host_name, name_server, password, port, provider, ssh_keyfile, state, timeout, username" It is supposed to be host_name. Only the example for documentation seems to be wrong in the module.
This commit is contained in:
parent
b1a8f3b3d3
commit
e93e76266c
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ commands:
|
|||
EXAMPLES = """
|
||||
- name: configure hostname and domain-name
|
||||
vyos_system:
|
||||
hostname: vyos01
|
||||
host_name: vyos01
|
||||
domain_name: test.example.com
|
||||
|
||||
- name: remove all configuration
|
||||
|
|
Loading…
Reference in a new issue