From 96ce44cb0f80ccfa021a8d36f3fac031c3279699 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 28 Jan 2008 09:02:02 +0000 Subject: [PATCH] Fix "gnt-instance modify --initrd" The new QA tests for instance modify uncovered a bug in the modify initrd operation when setting the initrd to none. Reviewed-by: imsnah --- lib/cmdlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index ca5162e..7ae062e 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -4170,7 +4170,7 @@ class LUSetInstanceParms(LogicalUnit): self.do_initrd_path = True if self.initrd_path not in (constants.VALUE_NONE, constants.VALUE_DEFAULT): - if not os.path.isabs(self.kernel_path): + if not os.path.isabs(self.initrd_path): raise errors.OpPrereqError("The initrd path must be an absolute" " filename") else: -- 1.7.10.4