From af996822156bfc50535d2a45e924d485d261ce1f Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 23 Mar 2012 10:17:20 -0700 Subject: [PATCH] use cache outside the installtree reenable the yum cache in the tmpdir, this means it doesn't end up on the final squashfs.img, reducing the boot.iso size from 400M to 154M --- src/sbin/lorax | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/sbin/lorax b/src/sbin/lorax index 14b7d96d..5b93b96b 100755 --- a/src/sbin/lorax +++ b/src/sbin/lorax @@ -149,17 +149,17 @@ def get_yum_base_object(installroot, repositories, mirrorlists=[], repositories = filter(bool, repositories) mirrorlists = filter(bool, mirrorlists) - #cachedir = os.path.join(tempdir, "yum.cache") - #if not os.path.isdir(cachedir): - # os.mkdir(cachedir) + cachedir = os.path.join(tempdir, "yum.cache") + if not os.path.isdir(cachedir): + os.mkdir(cachedir) yumconf = os.path.join(tempdir, "yum.conf") c = ConfigParser.ConfigParser() # add the main section section = "main" - data = {#"cachedir": cachedir, - #"keepcache": 0, + data = {"cachedir": cachedir, + "keepcache": 0, "gpgcheck": 0, "plugins": 0, "reposdir": "",