diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | backend.py | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -3,6 +3,9 @@ * fsset.py: String fix (#231761). * iw/upgrade_swap_gui.py: Likewise. + * backend.py (AnacondaBackend.initLog): Set instLog attribute on the + backend so yum has somewhere to log to. + 2007-03-12 David Cantrell <dcantrell@redhat.com> * loader2/net.c (doDhcp): Return NULL in instances where DHCPv4_DISABLE diff --git a/backend.py b/backend.py index 181c0dc3d..9b68e3dc3 100644 --- a/backend.py +++ b/backend.py @@ -147,7 +147,7 @@ class AnacondaBackend: except OSError: pass - instLog = open(instLogName, "w+") + self.instLog = open(instLogName, "w+") # dont start syslogd if we arent creating filesystems if flags.setupFilesystems: |