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
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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