Browse code

Unconfigure the devstack CA when USE_SSL is True

Change-Id: I17cb5e5d93bfe6fc6746ee530f639e2ed42da85a

Rob Crittenden authored on 2015/02/11 04:16:56
Showing 1 changed files
... ...
@@ -132,6 +132,9 @@ if is_service_enabled tls-proxy; then
132 132
     stop_tls_proxy
133 133
     cleanup_CA
134 134
 fi
135
+if [ "$USE_SSL" == "True" ]; then
136
+    cleanup_CA
137
+fi
135 138
 
136 139
 SCSI_PERSIST_DIR=$CINDER_STATE_PATH/volumes/*
137 140