Browse code

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

DennyZhang authored on 2013/10/14 14:51:10
Showing 1 changed files
... ...
@@ -86,10 +86,6 @@ function cleanup_rpc_backend {
86 86
         else
87 87
             exit_distro_not_supported "zeromq installation"
88 88
         fi
89
-
90
-        # Necessary directory for socket location.
91
-        sudo mkdir -p /var/run/openstack
92
-        sudo chown $STACK_USER /var/run/openstack
93 89
     fi
94 90
 }
95 91