summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlberto Planas <aplanas@gmail.com>2014-10-17 16:38:56 +0200
committerAlberto Planas <aplanas@gmail.com>2014-10-17 16:39:51 +0200
commit31cfc33e8f7d99ed1c79377c2e91674392d61dda (patch)
tree8742d8ddce656334e940434b9694170cde5d7309 /doc
parentd4f890798a0588a80e21fad044d4df5d0964dc70 (diff)
downloadglance-31cfc33e8f7d99ed1c79377c2e91674392d61dda.tar.gz
Adds openSUSE in the installing documentation
Change-Id: Ic8a19d9fd1d6d551b9ca2ee36389c69e63cf0869
Diffstat (limited to 'doc')
-rw-r--r--doc/source/installing.rst42
1 files changed, 42 insertions, 0 deletions
diff --git a/doc/source/installing.rst b/doc/source/installing.rst
index 0e5ebabdb..5d128dfe6 100644
--- a/doc/source/installing.rst
+++ b/doc/source/installing.rst
@@ -47,6 +47,23 @@ Install Glance::
$ su -
# yum install openstack-glance
+openSUSE, SLE
+#############
+
+openSUSE 13.2, SLE 12, and the rolling release Factory needs an extra
+repository enabled to install all the OpenStack packages.
+
+Search the proper repository in the `Cloud:OpenStack:Master <https://build.opensuse.org/project/repositories/Cloud:OpenStack:Master>`_ project. For example, for openSUSE 13.2:
+
+1. Add the OpenStack master repository::
+
+ $ sudo zypper ar -f -g http://download.opensuse.org/repositories/Cloud:/OpenStack:/Master/openSUSE_13.2/ OpenStack
+ $ sudo zypper ref
+
+2. Install Glance::
+
+ $ sudo zypper in openstack-glance
+
Installing from source tarballs
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -135,3 +152,28 @@ Once Glance is built and tested, install it::
$ su -
# python setup.py install
+
+openSUSE, SLE
+#############
+
+On openSUSE and SLE (also this is valid for Factory), we can install
+all the build dependencies using Zypper.
+
+1. Install Git and build dependencies::
+
+ $ sudo zypper install git
+ $ sudo zypper source-install -d openstack-glance
+
+.. note::
+
+ If you want to build the Glance documentation locally, you will also want
+ to install the packages python-sphinx and graphviz.
+
+2. Clone Glance's trunk branch from GitHub::
+
+ $ git clone git://github.com/openstack/glance
+ $ cd glance
+
+3. Install Glance::
+
+ $ sudo python setup.py install