From f9e8a383466d7db1e87de058f31e871bfb75ea56 Mon Sep 17 00:00:00 2001 From: Mahito OGURA Date: Mon, 1 Jun 2015 18:32:23 +0900 Subject: [PATCH] Fix document about Rally with DevStack all-in-one installation The document about 'Rally with DevStack all-in-one installation' shows that DevStack uses `localrc`, however DevStack uses `local.conf` now. This patch fix (`localrc`->`local.conf`) the document. Change-Id: I8fc707b6d30b2ebbe2643f9eba0b01d8bda817cb Closes-bug: 1460582 --- doc/source/install.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/source/install.rst b/doc/source/install.rst index c7eaa889d8..a58913ebbe 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -114,7 +114,8 @@ Then, configure DevStack to run Rally: cp rally/contrib/devstack/lib/rally devstack/lib/ cp rally/contrib/devstack/extras.d/70-rally.sh devstack/extras.d/ cd devstack - echo "enable_service rally" >> localrc + cp samples/local.conf local.conf + echo "enable_service rally" >> local.conf Finally, run DevStack as usually: @@ -181,7 +182,7 @@ In case you have SELinux enabled and rally fails to create database, try executing the following commands to put SELinux into Permissive Mode on the host machine. .. code-block:: none - + $ sed -i 's/SELINUX=enforcing/SELINUX=permissive/' /etc/selinux/config $ setenforce permissive