From a23e2e2d7ef8e041712a823b66d2fe5deb3dfd74 Mon Sep 17 00:00:00 2001 From: Will Szumski Date: Wed, 26 Sep 2018 15:38:26 +0100 Subject: [PATCH] Reorder installation steps Tenks has a dependency on ansible. We need to make sure this is installed before we run `ansible-galaxy install`. `pip install .` was therefore moved above `ansible-galaxy install` in the installation steps. --- doc/source/install.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/install.rst b/doc/source/install.rst index d4cb0e1..443679a 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -56,15 +56,15 @@ Obtain the Tenks source code and change into the directory. For example:: (tenks) $ git clone https://github.com/stackhpc/tenks.git (tenks) $ cd tenks +Install Tenks and its requirements using the source code checkout:: + + (tenks) $ pip install . + Tenks has dependencies on Ansible roles that are hosted by Ansible Galaxy. These can be installed by a command such as:: (tenks) $ ansible-galaxy install --role-file=requirements.yml --roles-path=ansible/roles/ -Install Tenks and its requirements using the source code checkout:: - - (tenks) $ pip install . - If you now wish to run Tenks (see :ref:`run`), keep your virtualenv active. If not, deactivate it::