diff options
author | Kevin Fenzi <kevin@scrye.com> | 2014-06-25 21:03:36 +0000 |
---|---|---|
committer | Kevin Fenzi <kevin@scrye.com> | 2014-06-25 21:03:36 +0000 |
commit | 746111d59b79902eeff3e79d639dda733b1c21e1 (patch) | |
tree | 44b2983472bde7d2ace91803cabef3dfb31e05ab | |
parent | 8ca70c59d1ec5a63fce861d5f92449d0f69d9156 (diff) | |
download | ansible-746111d59b79902eeff3e79d639dda733b1c21e1.tar.gz ansible-746111d59b79902eeff3e79d639dda733b1c21e1.tar.xz ansible-746111d59b79902eeff3e79d639dda733b1c21e1.zip |
This is xfs on rhel7
-rw-r--r-- | playbooks/el7_temp_instance.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/playbooks/el7_temp_instance.yml b/playbooks/el7_temp_instance.yml index d47742d9d..6b611b444 100644 --- a/playbooks/el7_temp_instance.yml +++ b/playbooks/el7_temp_instance.yml @@ -39,12 +39,12 @@ failed_when: growpart.rc == 2 - name: resize the /dev/vda 1 fs - action: command resize2fs /dev/vda1 + action: command xfs_growfs /dev/vda1 when: growpart.rc == 0 - - name: put the mbr back - b/c the resize breaks booting otherwise - action: shell cat /usr/share/syslinux/mbr.bin > /dev/vda - when: growpart.rc == 0 +# - name: put the mbr back - b/c the resize breaks booting otherwise +# action: shell cat /usr/share/syslinux/mbr.bin > /dev/vda +# when: growpart.rc == 0 - include: "{{ tasks }}/cloud_setup_basic.yml" |