Browse code

lioadm make sure targetcli is there

Without installing the targetcli package
tools and configs can be missing.

The code was correct baside a typo,
it is `ISCSI` not `ICSI`

Change-Id: I32e5d84d87560458f0eaaf820dcd00c86e6dec8b

Attila Fazekas authored on 2017/12/11 20:01:32
Showing 1 changed files
... ...
@@ -430,7 +430,7 @@ function install_cinder {
430 430
     setup_develop $CINDER_DIR
431 431
     if [[ "$CINDER_ISCSI_HELPER" == "tgtadm" ]]; then
432 432
         install_package tgt
433
-    elif [[ "$CINDER_ISCI_HELPER" == "lioadm" ]]; then
433
+    elif [[ "$CINDER_ISCSI_HELPER" == "lioadm" ]]; then
434 434
         install_package targetcli
435 435
     fi
436 436
 }