1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix parted resize example in docs (#1653) (#1655) (#1656)

(cherry picked from commit 144855e820)

Co-authored-by: jake2184 <jake2184@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2021-01-21 14:43:11 +01:00 committed by GitHub
parent 12618ddbd4
commit 2d84387d84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -217,10 +217,11 @@ EXAMPLES = r'''
- name: Extend an existing partition to fill all available space
community.general.parted:
decice: /dev/sdb
device: /dev/sdb
number: "{{ sdb_info.partitions | length }}"
part_end: "100%"
resize: true
state: present
'''