summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Planas <aplanas@gmail.com>2014-09-26 14:58:46 +0200
committerAlberto Planas <aplanas@gmail.com>2014-09-26 15:51:20 +0200
commit3e57528b0b5ea9aa6bcf980c23f4cbaa839d5a9f (patch)
tree62ac65aa051cc36f79129476446b0c1d0bc276dc
parent52f77f97c58c20557b73738ad14149006d7e2096 (diff)
downloadironic-3e57528b0b5ea9aa6bcf980c23f4cbaa839d5a9f.tar.gz
Adds openSUSE support for developer documentation
Support for openSUSE documentation is updated in this patch. Change-Id: I3606c999fd1a17df975d9dd734c2582841ecc152
-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