From 36cd1de070a202109c26eb3ccdd1b17bdec4959e Mon Sep 17 00:00:00 2001 From: Marc Gariepy Date: Fri, 19 Aug 2016 11:23:06 -0400 Subject: [PATCH] [DOC] Add cinder service when cleaning up aio host Change-Id: Idf09815ae475547d24213ca53aca952e216f097f --- doc/source/developer-docs/quickstart-aio.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/developer-docs/quickstart-aio.rst b/doc/source/developer-docs/quickstart-aio.rst index f6ffdd290d..b9fe8084da 100644 --- a/doc/source/developer-docs/quickstart-aio.rst +++ b/doc/source/developer-docs/quickstart-aio.rst @@ -224,18 +224,18 @@ isn't always practical. As such the following may be executed instead: # # within a container. # for i in \ $(ls /etc/init \ - | grep -e "nova\|swift\|neutron" \ + | grep -e "nova\|swift\|neutron\|cinder" \ | awk -F'.' '{print $1}'); do \ service $i stop; \ done # # Uninstall the core services that were installed. - # for i in $(pip freeze | grep -e "nova\|neutron\|keystone\|swift"); do \ + # for i in $(pip freeze | grep -e "nova\|neutron\|keystone\|swift\|cinder"); do \ pip uninstall -y $i; done # # Remove crusty directories. - # rm -rf /openstack /etc/{neutron,nova,swift} \ - /var/log/{neutron,nova,swift} + # rm -rf /openstack /etc/{neutron,nova,swift,cinder} \ + /var/log/{neutron,nova,swift,cinder} # # Remove the pip configuration files on the host # rm -rf /root/.pip