From 511aac825de3d9a301de5bdf8d431eb0bd2e6682 Mon Sep 17 00:00:00 2001 From: Francisco Redondo Marchena Date: Wed, 8 Apr 2015 15:17:13 +0000 Subject: Remove create partition before creating the lvm volumes --- openstack/usr/share/openstack/openstack-cinder-setup | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/openstack/usr/share/openstack/openstack-cinder-setup b/openstack/usr/share/openstack/openstack-cinder-setup index 2c133942..e2a69966 100644 --- a/openstack/usr/share/openstack/openstack-cinder-setup +++ b/openstack/usr/share/openstack/openstack-cinder-setup @@ -104,15 +104,11 @@ fi # Wipe the disk wipefs -fa $device -# Partition disk -echo -e "n\np\n1\n\n\nw\n" | fdisk $device -partition="$device"1 - # Create a physical volume -pvcreate -ff -y $partition +pvcreate -ff -y $device # Create a volume group named "cinder-volumes" -vgcreate -y cinder-volumes $partition +vgcreate -y cinder-volumes $device # Remove the one-shot setup service rm /etc/systemd/system/multi-user.target.wants/openstack-cinder-setup.service -- cgit v1.2.1