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 $ git clone https://git.openstack.org/openstack-dev/devstack
(Or set env variable DEVSTACKDIR to the location to your devstack code) (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 $ chmod u+x prepare_devstack.sh
@ -129,7 +129,7 @@ Install the following software, if you haven't already.
Clone Congress:: Clone Congress::
$ git clone https://github.com/stackforge/congress.git $ git clone https://github.com/openstack/congress.git
$ cd congress $ cd congress
Install Source code:: Install Source code::

View File

@ -1,11 +1,11 @@
# congress.sh - Devstack extras script to install Congress # congress.sh - Devstack extras script to install Congress
# congress service # 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_BRANCH=${CONGRESS_BRANCH:-master}
# congress client library test # 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} CONGRESSCLIENT_BRANCH=${CONGRESSCLIENT_BRANCH:-master}

View File

@ -11,8 +11,8 @@ if [ ! -d $DEVSTACKDIR ]; then
exit 1 exit 1
fi 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/openstack/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/extras.d/70-congress.sh > $DEVSTACKDIR/extras.d/70-congress.sh
if [ -e $DEVSTACKDIR/local.conf ]; then if [ -e $DEVSTACKDIR/local.conf ]; then
echo "enable_service congress" >> $DEVSTACKDIR/local.conf 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. codebases that implement Congress: the server and the python client bindings.
* wiki: https://wiki.openstack.org/wiki/Congress * wiki: https://wiki.openstack.org/wiki/Congress
* server: https://git.openstack.org/cgit/stackforge/congress * server: https://git.openstack.org/cgit/openstack/congress
* client: https://git.openstack.org/cgit/stackforge/python-congressclient * client: https://git.openstack.org/cgit/openstack/python-congressclient
The structure of the client code is the same as that for other recent 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 OpenStack python clients. The bulk of the Congress code is contained