Change stackforge references to openstack

README and prepare_devstack.sh were using stackforge/congress. However,
with Congress now being part of Openstack this needs to be updated

Change-Id: I26aa9c5b15a695ffe12cfbea89593cc2342bf4fd
This commit is contained in:
Amey Bhide 2015-04-21 13:35:22 -07:00
parent 973736067f
commit aa57fc7fca
4 changed files with 8 additions and 8 deletions

View File

@ -97,7 +97,7 @@ To install, make sure you have *git* installed. Then::
$ git clone https://git.openstack.org/openstack-dev/devstack
(Or set env variable DEVSTACKDIR to the location to your devstack code)
$ wget http://git.openstack.org/cgit/stackforge/congress/plain/contrib/devstack/prepare_devstack.sh
$ wget http://git.openstack.org/cgit/openstack/congress/plain/contrib/devstack/prepare_devstack.sh
$ chmod u+x prepare_devstack.sh
@ -129,7 +129,7 @@ Install the following software, if you haven't already.
Clone Congress::
$ git clone https://github.com/stackforge/congress.git
$ git clone https://github.com/openstack/congress.git
$ cd congress
Install Source code::

View File

@ -1,11 +1,11 @@
# congress.sh - Devstack extras script to install Congress
# congress service
CONGRESS_REPO=${CONGRESS_REPO:-${GIT_BASE}/stackforge/congress.git}
CONGRESS_REPO=${CONGRESS_REPO:-${GIT_BASE}/openstack/congress.git}
CONGRESS_BRANCH=${CONGRESS_BRANCH:-master}
# congress client library test
CONGRESSCLIENT_REPO=${CONGRESSCLIENT_REPO:-${GIT_BASE}/stackforge/python-congressclient.git}
CONGRESSCLIENT_REPO=${CONGRESSCLIENT_REPO:-${GIT_BASE}/openstack/python-congressclient.git}
CONGRESSCLIENT_BRANCH=${CONGRESSCLIENT_BRANCH:-master}

View File

@ -11,8 +11,8 @@ if [ ! -d $DEVSTACKDIR ]; then
exit 1
fi
wget -O - http://git.openstack.org/cgit/stackforge/congress/plain/contrib/devstack/lib/congress > $DEVSTACKDIR/lib/congress
wget -O - http://git.openstack.org/cgit/stackforge/congress/plain/contrib/devstack/extras.d/70-congress.sh > $DEVSTACKDIR/extras.d/70-congress.sh
wget -O - http://git.openstack.org/cgit/openstack/congress/plain/contrib/devstack/lib/congress > $DEVSTACKDIR/lib/congress
wget -O - http://git.openstack.org/cgit/openstack/congress/plain/contrib/devstack/extras.d/70-congress.sh > $DEVSTACKDIR/extras.d/70-congress.sh
if [ -e $DEVSTACKDIR/local.conf ]; then
echo "enable_service congress" >> $DEVSTACKDIR/local.conf

View File

@ -17,8 +17,8 @@ The main source of information is the Congress wiki. There are two separate
codebases that implement Congress: the server and the python client bindings.
* wiki: https://wiki.openstack.org/wiki/Congress
* server: https://git.openstack.org/cgit/stackforge/congress
* client: https://git.openstack.org/cgit/stackforge/python-congressclient
* server: https://git.openstack.org/cgit/openstack/congress
* client: https://git.openstack.org/cgit/openstack/python-congressclient
The structure of the client code is the same as that for other recent
OpenStack python clients. The bulk of the Congress code is contained