diff --git a/playbooks/f19-temp-instance.yml b/playbooks/f19-temp-instance.yml index 558bec3b7f..783da95e92 100644 --- a/playbooks/f19-temp-instance.yml +++ b/playbooks/f19-temp-instance.yml @@ -29,7 +29,7 @@ - ${vars}/${ansible_distribution}.yml tasks: - - name: growpart the second partition (/) to full size + - name: growpart /dev/vda1 partition (/) to full size action: command growpart /dev/vda 1 ignore_errors: true register: growpart @@ -38,7 +38,7 @@ action: command resize2fs /dev/vda1 when_integer: ${growpart.rc} == 0 - - name: put the mbr back - b/c the resize breaks it + - name: put the mbr back - b/c the resize breaks booting otherwise action: shell cat /usr/share/syslinux/mbr.bin > /dev/vda when_integer: ${growpart.rc} == 0