From 7280c909e067ca3ae2cdc19d26055fdbc8c37e00 Mon Sep 17 00:00:00 2001 From: Kevin Carter Date: Wed, 20 Apr 2016 23:19:48 -0500 Subject: [PATCH] Docs: Add pip configuration removal to AIO re-deployment process This change adds a simple comment and command to remove the ~/.pip directory when cleanning up an AIO deployment. Change-Id: Ia6e714f20240f2829c7e476010654580cf1fc355 Signed-off-by: Kevin Carter --- doc/source/developer-docs/quickstart-aio.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/source/developer-docs/quickstart-aio.rst b/doc/source/developer-docs/quickstart-aio.rst index fa285311f0..bd0a80196a 100644 --- a/doc/source/developer-docs/quickstart-aio.rst +++ b/doc/source/developer-docs/quickstart-aio.rst @@ -204,6 +204,9 @@ isn't always practical. As such the following may be executed instead: $ rm -rf /openstack /etc/{neutron,nova,swift} \ /var/log/{neutron,nova,swift} + $ # Remove the pip configuration files on the host + $ rm -rf /root/.pip + There is a convenience script (``scripts/teardown.sh``) which will destroy everything known within an environment. You should be aware that this script will destroy whole environments and should be used WITH CAUTION.