Skip to content

Instantly share code, notes, and snippets.

@joubertredrat
Created November 20, 2015 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joubertredrat/f979e232e1cc8e62f216 to your computer and use it in GitHub Desktop.
Save joubertredrat/f979e232e1cc8e62f216 to your computer and use it in GitHub Desktop.
Cloud init to resize CentOS6 instance
#!/bin/bash
echo 'Resize partition'
yum -y install epel-release
yum -y install cloud-utils
yum -y install dracut-modules-growroot
growpart /dev/vda 1
reboot
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment