latest keystone configuration for python-novaclient and dash

main
Anthony Young 13 years ago
parent 124b0c253d
commit 34acee3699

@ -1,12 +1,5 @@
#!/usr/bin/env bash
# Use stackrc.example if stackrc is missing
if [ ! -e ./stackrc ]; then
read -n1 -p "No stackrc present. Copy stackrc.example to stackrc? (y/n) "
echo
[[ $REPLY = [yY] ]] && cp stackrc.example stackrc|| { echo "Aborting: Missing stackrc"; exit 1; }
fi
# Source params
source ./stackrc

@ -1,12 +1,5 @@
#!/bin/bash
# Use stackrc.example if stackrc is missing
if [ ! -e ./stackrc ]; then
read -n1 -p "No stackrc present. Copy stackrc.example to stackrc? (y/n) "
echo
[[ $REPLY = [yY] ]] && cp stackrc.example stackrc|| { echo "Aborting: Missing stackrc"; exit 1; }
fi
# Source params
source ./stackrc

@ -22,7 +22,7 @@ $BIN_DIR/keystone-manage $* role grant KeystoneServiceAdmin admin
# Services
$BIN_DIR/keystone-manage $* service add nova_compat nova_compat nova_compat
$BIN_DIR/keystone-manage $* service add nova nova nova
$BIN_DIR/keystone-manage $* service add compute compute compute
$BIN_DIR/keystone-manage $* service add glance glance glance
$BIN_DIR/keystone-manage $* service add identity identity identity

@ -59,13 +59,6 @@ set -o errexit
# an error. It is also useful for following allowing as the install occurs.
set -o xtrace
# Use stackrc.example if stackrc is missing
if [ ! -e ./stackrc ]; then
read -n1 -p "No stackrc present. Copy stackrc.example to stackrc? (y/n) "
echo
[[ $REPLY = [yY] ]] && cp stackrc.example stackrc|| { echo "Aborting: Missing stackrc"; exit 1; }
fi
# Import variables
source ./stackrc

@ -16,7 +16,7 @@ NOVNC_BRANCH=master
# django powered web control panel for openstack
DASH_REPO=https://github.com/cloudbuilders/openstack-dashboard.git
DASH_BRANCH=master
DASH_BRANCH=service_catalog_compute
# add nixon, will use this to show munin graphs in dashboard
NIXON_REPO=https://github.com/cloudbuilders/nixon.git
@ -24,7 +24,7 @@ NIXON_BRANCH=diablo
# python client library to nova that dashboard (and others) use
NOVACLIENT_REPO=https://github.com/cloudbuilders/python-novaclient.git
NOVACLIENT_BRANCH=master
NOVACLIENT_BRANCH=rackspace_master
# openstackx is a collection of extensions to openstack.compute & nova
# that is *deprecated*. The code is being moved into python-novaclient & nova.
Loading…
Cancel
Save