From 501aaeb4e7ee07d4c52db987d748ac75dabcaaa6 Mon Sep 17 00:00:00 2001 From: Attila Fazekas Date: Mon, 11 Dec 2017 12:01:32 +0100 Subject: [PATCH] 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 --- lib/cinder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cinder b/lib/cinder index a966a4b28e..7c5cefe018 100644 --- a/lib/cinder +++ b/lib/cinder @@ -430,7 +430,7 @@ function install_cinder { setup_develop $CINDER_DIR if [[ "$CINDER_ISCSI_HELPER" == "tgtadm" ]]; then install_package tgt - elif [[ "$CINDER_ISCI_HELPER" == "lioadm" ]]; then + elif [[ "$CINDER_ISCSI_HELPER" == "lioadm" ]]; then install_package targetcli fi }