Skip to content

Commit 77e28f8

Browse files
authored
Merge pull request #1435 from benoit-ferre/fix-lint
Fix duplicate task name in documentation
2 parents 37e30e3 + d94dac7 commit 77e28f8

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bugfixes:
2+
- Fix task duplicate task name in documentation that cause ansible-lint error

docs/plugins/netbox_device_type_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ Examples
10761076
manufacturer: Test Manufacturer
10771077
state: present
10781078

1079-
- name: Create device type within NetBox with only required information
1079+
- name: Create device type within NetBox with more information
10801080
netbox.netbox.netbox_device_type:
10811081
netbox_url: http://netbox.local
10821082
netbox_token: thisIsMyToken

docs/plugins/netbox_platform_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ Examples
782782
config_template: "my_config_template_slug"
783783
state: present
784784

785-
- name: Create platform within NetBox with only required information
785+
- name: Create platform within NetBox with more information
786786
netbox.netbox.netbox_platform:
787787
netbox_url: http://netbox.local
788788
netbox_token: thisIsMyToken

docs/plugins/netbox_prefix_module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,7 @@ Examples
12161216
gather_facts: false
12171217

12181218
tasks:
1219-
- name: Create prefix within NetBox with only required information
1219+
- name: Create prefix within NetBox with only required information before deleting it
12201220
netbox.netbox.netbox_prefix:
12211221
netbox_url: http://netbox.local
12221222
netbox_token: thisIsMyToken

plugins/modules/netbox_device_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
manufacturer: Test Manufacturer
151151
state: present
152152
153-
- name: Create device type within NetBox with only required information
153+
- name: Create device type within NetBox with more information
154154
netbox.netbox.netbox_device_type:
155155
netbox_url: http://netbox.local
156156
netbox_token: thisIsMyToken

plugins/modules/netbox_platform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
config_template: "my_config_template_slug"
107107
state: present
108108
109-
- name: Create platform within NetBox with only required information
109+
- name: Create platform within NetBox with more information
110110
netbox.netbox.netbox_platform:
111111
netbox_url: http://netbox.local
112112
netbox_token: thisIsMyToken

plugins/modules/netbox_prefix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
gather_facts: false
154154
155155
tasks:
156-
- name: Create prefix within NetBox with only required information
156+
- name: Create prefix within NetBox with only required information before deleting it
157157
netbox.netbox.netbox_prefix:
158158
netbox_url: http://netbox.local
159159
netbox_token: thisIsMyToken

0 commit comments

Comments
 (0)