modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov
2020-07-13 22:50:31 +03:00
committed by GitHub
parent 8b92e0454d
commit 41cfdda6a3
533 changed files with 2130 additions and 2130 deletions

View File

@@ -93,7 +93,7 @@ options:
EXAMPLES = '''
- name: Configure a network ipv4
nios_network:
community.general.nios_network:
network: 192.168.10.0/24
comment: this is a test comment
state: present
@@ -103,7 +103,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Configure a network ipv6
nios_network:
community.general.nios_network:
network: fe80::/64
comment: this is a test comment
state: present
@@ -113,7 +113,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Set dhcp options for a network ipv4
nios_network:
community.general.nios_network:
network: 192.168.10.0/24
comment: this is a test comment
options:
@@ -126,7 +126,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Remove a network ipv4
nios_network:
community.general.nios_network:
network: 192.168.10.0/24
state: absent
provider:
@@ -135,7 +135,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Configure a ipv4 network container
nios_network:
community.general.nios_network:
network: 192.168.10.0/24
container: true
comment: test network container
@@ -146,7 +146,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Configure a ipv6 network container
nios_network:
community.general.nios_network:
network: fe80::/64
container: true
comment: test network container
@@ -157,7 +157,7 @@ EXAMPLES = '''
password: admin
connection: local
- name: Remove a ipv4 network container
nios_network:
community.general.nios_network:
networkr: 192.168.10.0/24
container: true
comment: test network container