Browse code

Fix XenAPINFS configuration

fixes bug 1087272

Trying to configure XenAPINFS volume driver through localrc options
failed. This fix removes the extra check, as lib/cinder already exits on
error.

Change-Id: I874b7cee44861244cb7a340cc4094ef3f8b48a5a

Mate Lakat authored on 2012/12/07 00:49:17
Showing 1 changed files
... ...
@@ -159,7 +159,6 @@ function configure_cinder() {
159 159
             iniset $CINDER_CONF DEFAULT xenapi_nfs_server "$CINDER_XENAPI_NFS_SERVER"
160 160
             iniset $CINDER_CONF DEFAULT xenapi_nfs_serverpath "$CINDER_XENAPI_NFS_SERVERPATH"
161 161
         )
162
-        [ $? -ne 0 ] && exit 1
163 162
     fi
164 163
 }
165 164