fuel-plugin-elasticsearch-k.../deployment_scripts/puppet/modules/disk_management/files/add_partition.sh

52 lines
1.6 KiB
Bash

#!/bin/bash
# Use this script if you want to allocate a new partition.
# Ubuntu and CentOS are not configured the same way by Fuel. CentOS is doing
# RAID 1 with /boot on all disks so we need to deal with that.
# $1 -> The disk (example: "/dev/sdb")
# $2 -> Size of the partition (use all free space if not provided)
set -eux
DISK=$1
DISK_SIZE=${2:-""}
PARTED="$(which parted 2>/dev/null) -s -m"
if ${PARTED} ${DISK} p | grep -q "unrecognised disk label"; then
# We need to create a new label
${PARTED} ${DISK} mklabel gpt
fi
# We take the free space at the end of the disk.
FREESPACE=$(${PARTED} ${DISK} unit B p free | grep "free" | tail -1)
if [[ -z "${FREESPACE}" ]]; then
echo "Failed to find free space"
exit 1
fi
BEGIN=$(echo ${FREESPACE} | awk -F: '{print $2}')
if [ -z ${DISK_SIZE} ]; then
END=$(echo ${FREESPACE} | awk -F: '{print $3}')
else
END="$(( $(echo $BEGIN | rev | cut -c 2- | rev) + $(( ${DISK_SIZE}*1024*1024*1024 )) ))B"
fi
# If you create a partition on a mounted disk, this command returns 1
# So we need a different way to catch the error
if ${PARTED} ${DISK} unit B mkpart primary ${BEGIN} ${END} | grep -q "^Error"; then
echo "Failed to create a new primary partition"
exit 1
fi
# Get the ID of the partition and set flags to LVM
# Like when we create a new partition, if you run this command on a mounted
# FS the kernel failed to re-read the partition and the command returns 1
# event in case of success.
PARTID=$(${PARTED} ${DISK} p | tail -1 | awk -F: {'print $1'})
if ${PARTED} ${DISK} set ${PARTID} lvm on | grep -q "^Error"; then
echo "Failed to set the lvm flag on partition ${PARTID}."
exit 1
fi