From c7a92800c9a2c3b3ed3b7f2a796ab9884a583403 Mon Sep 17 00:00:00 2001 From: DennyZhang Date: Mon, 14 Oct 2013 00:51:10 -0500 Subject: [PATCH] remove useless step in cleanup_rpc_backend It shall not make dir of /var/run/openstack for the cleanup operation. install_rpc_backend will make the directory, which is covered by another take care of this. Change-Id: I2bf1bfb4a6b409cc04f2d7b94dd58627e0134b71 --- lib/rpc_backend | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/rpc_backend b/lib/rpc_backend index ff87aae2af..c05bd8cb2a 100644 --- a/lib/rpc_backend +++ b/lib/rpc_backend @@ -86,10 +86,6 @@ function cleanup_rpc_backend { else exit_distro_not_supported "zeromq installation" fi - - # Necessary directory for socket location. - sudo mkdir -p /var/run/openstack - sudo chown $STACK_USER /var/run/openstack fi }