mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-04 07:19:10 -07:00
modules: fix examples to use FQCN (#644)
* modules: fix examples to use FQCN * fix * fix * fix
This commit is contained in:
parent
8b92e0454d
commit
41cfdda6a3
533 changed files with 2130 additions and 2130 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue