We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd86a2 commit 5e74a58Copy full SHA for 5e74a58
changelogs/fragments/extend_address_test.yml
@@ -0,0 +1,2 @@
1
+bugfixes:
2
+- Fix \#77 - hostname parameter missing in task for address test case
tests/test_playbooks/tasks/address.yml
@@ -10,6 +10,7 @@
10
ipaddress: "{{ address.ipaddress }}"
11
is_gateway: "{{ address.is_gateway | default(omit) }}"
12
description: "{{ address.description | default(omit) }}"
13
+ hostname: "{{ address.hostname | default(omit) }}"
14
mac_address: "{{ address.mac_address | default(omit) }}"
15
owner: "{{ address.owner | default(omit) }}"
16
tag: "{{ address.tag | default(omit) }}"
tests/test_playbooks/vars/address.yml
@@ -2,5 +2,6 @@
base_address_data:
3
ipaddress: 10.65.22.1
4
subnet: 10.65.22.0/24
5
+ hostname: foo.example.com
6
section: Customers
7
is_gateway: yes
0 commit comments