summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2014-09-27 22:46:20 +0000
committerGerrit Code Review <review@openstack.org>2014-09-27 22:46:20 +0000
commit5e72ff0cbe5f8699ac9e43c33c2e0a961d1033b0 (patch)
tree4e4fb2ef67bc5ceb7abed71dfecb138d105b59b5
parente5536e23c3808e113fee21108f51c939591cf08a (diff)
parent3e57528b0b5ea9aa6bcf980c23f4cbaa839d5a9f (diff)
downloadironic-5e72ff0cbe5f8699ac9e43c33c2e0a961d1033b0.tar.gz
Merge "Adds openSUSE support for developer documentation"
-rw-r--r--doc/source/dev/dev-quickstart.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/source/dev/dev-quickstart.rst b/doc/source/dev/dev-quickstart.rst
index b895c72ef..5f235b6a0 100644
--- a/doc/source/dev/dev-quickstart.rst
+++ b/doc/source/dev/dev-quickstart.rst
@@ -23,6 +23,9 @@ Install prerequisites::
sudo easy_install nose
sudo pip install virtualenv setuptools-git flake8 tox testrepository
+ # openSUSE/SLE 12:
+ sudo zypper install git git-review libffi-devel libmysqlclient-devel libopenssl-devel libxml2-devel libxslt-devel postgresql-devel python-devel python-flake8 python-nose python-pip python-setuptools-git python-testrepository python-tox python-virtualenv
+
You may need to explicitly upgrade virtualenv if you've installed the one
from your OS distribution and it is too old (tox will complain). You can
upgrade it individually, if you need to::
@@ -88,6 +91,10 @@ First, install a few system prerequisites::
sudo yum install rabbitmq-server
sudo service rabbitmq-server start
+ # openSUSE/SLE 12:
+ sudo zypper install rabbitmq-server
+ sudo systemctl start rabbitmq-server.service
+
# optionally, install mysql-server
# Ubuntu/Debian:
@@ -97,6 +104,10 @@ First, install a few system prerequisites::
# sudo yum install mysql-server
# sudo service mysqld start
+ # openSUSE/SLE 12:
+ # sudo zypper install mariadb
+ # sudo systemctl start mysql.service
+
Next, clone the client and install it within a virtualenv as well::
# from your home or source directory