From 01c654e2ef6db17e677d5e9a0d8e781d374bdbbe Mon Sep 17 00:00:00 2001 From: Chuck Short Date: Thu, 21 Jun 2012 13:50:22 -0400 Subject: Make tgtadm the default iscsi user-land helper. Most modern Linux distrobutions have tgtadm as their default iscsi user-land helper. This includes Ubuntu, Fedora, RHEL, SuSe, and others. Make it default for nova as well. No change is required for devstack since its the default as well. Change-Id: I3f5204f08bfd9ef41eda2df7aa6bb35559516213 Signed-off-by: Chuck Short --- nova/volume/iscsi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nova/volume') diff --git a/nova/volume/iscsi.py b/nova/volume/iscsi.py index 115d51c80..33ee7dabc 100644 --- a/nova/volume/iscsi.py +++ b/nova/volume/iscsi.py @@ -26,7 +26,7 @@ from nova import utils iscsi_helper_opt = cfg.StrOpt('iscsi_helper', - default='ietadm', + default='tgtadm', help='iscsi target user-land tool to use') FLAGS = flags.FLAGS -- cgit