system/beadm: improve examples (#20461)

pull/4420/head
Fabio Alessandro Locati 2017-01-19 17:14:01 +00:00 committed by John R Barker
parent a0abaf5409
commit 7a275f61de
1 changed files with 32 additions and 15 deletions

View File

@ -77,27 +77,44 @@ options:
''' '''
EXAMPLES = ''' EXAMPLES = '''
name: Create ZFS boot environment - name: Create ZFS boot environment
beadm: name=upgrade-be state=present beadm:
name: upgrade-be
state: present
name: Create ZFS boot environment from existing inactive boot environment - name: Create ZFS boot environment from existing inactive boot environment
beadm: name=upgrade-be snapshot=be@old state=present beadm:
name: upgrade-be
snapshot: be@old
state: present
name: Create ZFS boot environment with compression enabled and description "upgrade" - name: Create ZFS boot environment with compression enabled and description "upgrade"
beadm: name=upgrade-be options="compression=on" description="upgrade" beadm:
state=present name: upgrade-be
options: "compression=on"
description: upgrade
state: present
name: Delete ZFS boot environment - name: Delete ZFS boot environment
beadm: name=old-be state=absent beadm:
name: old-be
state: absent
name: Mount ZFS boot environment on /tmp/be - name: Mount ZFS boot environment on /tmp/be
beadm: name=BE mountpoint=/tmp/be state=mounted beadm:
name: BE
mountpoint: /tmp/be
state: mounted
name: Unmount ZFS boot environment - name: Unmount ZFS boot environment
beadm: name=BE state=unmounted beadm:
name: BE
state: unmounted
name: Activate ZFS boot environment - name: Activate ZFS boot environment
beadm: name=upgrade-be state=activated beadm:
name: upgrade-be
state: activated
''' '''
RETURN = ''' RETURN = '''