From 07fd18e754db644aa41f97adda8c7f6a8c4d8ba7 Mon Sep 17 00:00:00 2001 From: "Elizabeth K. Joseph" Date: Thu, 26 Feb 2015 16:48:41 -0800 Subject: [PATCH] Add instructions for vgcreate to sysadmin docs The current sysadmin.html assumes there is a volume group (vg) present when adding a new cinder volume. On a new server a vg won't exist, adding instructions for how to add it. Change-Id: I3171819fb5aea8a5edfab28f29ba35f9d0f5d461 --- doc/source/sysadmin.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/source/sysadmin.rst b/doc/source/sysadmin.rst index f5deaa3999..6bed85d02f 100644 --- a/doc/source/sysadmin.rst +++ b/doc/source/sysadmin.rst @@ -336,6 +336,10 @@ Log into puppetmaster.openstack.org and run:: sudo vgextend main ${DEVICE}1 +* However, if the volume group does not exist yet, you can create it:: + + sudo vgcreate main ${DEVICE}1 + Creating a New Logical Volume -----------------------------