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
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: Create and install a zone, but don't boot it
solaris_zone:
community.general.solaris_zone:
name: zone1
state: present
path: /zones/zone1
@ -102,7 +102,7 @@ EXAMPLES = '''
config: 'set autoboot=true; add net; set physical=bge0; set address=10.1.1.1; end'
- name: Create and install a zone and boot it
solaris_zone:
community.general.solaris_zone:
name: zone1
state: running
path: /zones/zone1
@ -110,27 +110,27 @@ EXAMPLES = '''
config: 'set autoboot=true; add net; set physical=bge0; set address=10.1.1.1; end'
- name: Boot an already installed zone
solaris_zone:
community.general.solaris_zone:
name: zone1
state: running
- name: Stop a zone
solaris_zone:
community.general.solaris_zone:
name: zone1
state: stopped
- name: Destroy a zone
solaris_zone:
community.general.solaris_zone:
name: zone1
state: absent
- name: Detach a zone
solaris_zone:
community.general.solaris_zone:
name: zone1
state: detached
- name: Configure a zone, ready to be attached
solaris_zone:
community.general.solaris_zone:
name: zone1
state: configured
path: /zones/zone1
@ -138,7 +138,7 @@ EXAMPLES = '''
config: 'set autoboot=true; add net; set physical=bge0; set address=10.1.1.1; end'
- name: Attach zone1
solaris_zone:
community.general.solaris_zone:
name: zone1
state: attached
attach_options: -u