Skip to content

Commit 363acd9

Browse files
committed
Cinder: install targetcli-fb for Bionic
The "targetcli" package no longer exists in Bionic and has been superseded by "targetcli-fb". Change-Id: I99e4e8ad8fbb6e7c86571af8b0c222dafacf6447
1 parent f9f1114 commit 363acd9

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

lib/cinder

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,11 @@ function install_cinder {
434434
if [[ "$CINDER_ISCSI_HELPER" == "tgtadm" ]]; then
435435
install_package tgt
436436
elif [[ "$CINDER_ISCSI_HELPER" == "lioadm" ]]; then
437-
install_package targetcli
437+
if [[ ${DISTRO} == "bionic" ]]; then
438+
install_package targetcli-fb
439+
else
440+
install_package targetcli
441+
fi
438442
fi
439443
}
440444

0 commit comments

Comments
 (0)