Merge branch 'master' of github.com:cloudbuilders/devstack
This commit is contained in:
commit
f1a98143dc
2 changed files with 14 additions and 10 deletions
7
stack.sh
7
stack.sh
|
@ -270,8 +270,11 @@ failed() {
|
|||
# an error. It is also useful for following along as the install occurs.
|
||||
set -o xtrace
|
||||
|
||||
# create the destination directory and ensure it is writable by the user
|
||||
sudo mkdir -p $DEST
|
||||
sudo chown `whoami` $DEST
|
||||
if [ ! -w $DEST ]; then
|
||||
sudo chown `whoami` $DEST
|
||||
fi
|
||||
|
||||
# Install Packages
|
||||
# ================
|
||||
|
@ -300,8 +303,6 @@ function git_clone {
|
|||
fi
|
||||
|
||||
if [ ! -d $2 ]; then
|
||||
sudo mkdir $2
|
||||
sudo chown `whoami` $2
|
||||
git clone $1 $2
|
||||
cd $2
|
||||
# This checkout syntax works for both branches and tags
|
||||
|
|
|
@ -21,11 +21,14 @@ if [ -b $DEST_DIR ]; then
|
|||
# We have a block device, install syslinux and mount it
|
||||
DEST_DEV=$DEST_DIR
|
||||
DEST_DIR=`mktemp -d mntXXXXXX`
|
||||
mount $DEST_DEV $DEST_DIR
|
||||
|
||||
if [ ! -d $DEST_DIR/syslinux ]; then
|
||||
mkdir -p $DEST_DIR/syslinux
|
||||
fi
|
||||
|
||||
# Install syslinux on the device
|
||||
syslinux --install --directory syslinux $DEST_DEV
|
||||
|
||||
mount $DEST_DEV $DEST_DIR
|
||||
else
|
||||
# We have a directory (for sanity checking output)
|
||||
DEST_DEV=""
|
||||
|
|
Loading…
Reference in a new issue