From 1316bd5b04dcb9bd819540bfed2d8486ed548984 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Mon, 1 Apr 2013 10:03:26 +0400 Subject: [PATCH] Fix grub variable --- install/variables/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/variables/system.py b/install/variables/system.py index 2e33a49..184f651 100644 --- a/install/variables/system.py +++ b/install/variables/system.py @@ -644,7 +644,7 @@ class VariableOsInstallGrubTerminal(Variable): return 'console' grubDefault = path.join(self.Get('cl_chroot_path'), 'etc/default/grub') - if getValueFromConfig(grubDefault,'GRUB_TERMINAL_OUTPUT') == 'console': + if getValueFromConfig(grubDefault,'GRUB_TERMINAL') == 'console': return 'console' return 'gfxterm'