ip_netns: fix module name in example (#207)
* ip_netns: fix module name in example Was referenced as 'namespace' while it should have been 'ip_netns'. Closes: #203 Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> * Update plugins/modules/net_tools/ip_netns.py * Update plugins/modules/net_tools/ip_netns.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>pull/213/head
parent
5b1652e8fa
commit
dab16b8783
|
@ -44,13 +44,13 @@ options:
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Create a namespace named mario
|
|
||||||
- name: Create a namespace named mario
|
- name: Create a namespace named mario
|
||||||
namespace:
|
ip_netns:
|
||||||
name: mario
|
name: mario
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
- name: Delete a namespace named luigi
|
- name: Delete a namespace named luigi
|
||||||
namespace:
|
ip_netns:
|
||||||
name: luigi
|
name: luigi
|
||||||
state: absent
|
state: absent
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in New Issue