bootstrap-vz/bootstrapvz/common/assets/init.d/expand-root
Jesse Szwedko 4429c226a8 Use hash instead of which in expand-root
Also remove the variable since we established that it is already in the
$PATH

Signed-off-by: Andrew Garrett <andrew.garrett@getbraintree.com>
2016-01-12 18:46:26 +00:00

37 lines
902 B
Bash

#!/bin/bash
### BEGIN INIT INFO
# Provides: expand-root
# Required-Start:
# Required-Stop:
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop:
# Description: Expand the filesystem of the mounted root volume/partition to its maximum possible size
### END INIT INFO
prog=$(basename $0)
logger="logger -t $prog"
hash growpart 2> /dev/null || {
$logger "growpart was not found on PATH. Unable to expand size."
exit 1
}
root_index="0"
growpart /dev/xvda $root_index || {
$logger "growpart failed. Unable to expand size."
exit 1
}
device_path="/dev/xvda$root_index"
filesystem=$(blkid -s TYPE -o value ${device_path})
case $filesystem in
xfs) xfs_growfs / ;;
ext2) resize2fs $device_path ;;
ext3) resize2fs $device_path ;;
ext4) resize2fs $device_path ;;
*) $logger "The filesystem $filesystem was not recognized. Unable to expand size." ;;
esac