From e984eb06c475172256c0ba8d80f02f3a27f81845 Mon Sep 17 00:00:00 2001 From: Seth Vidal Date: Fri, 26 Apr 2013 21:57:20 +0000 Subject: [PATCH] update comments --- playbooks/f19-temp-instance.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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