diff options
author | Matt Wilson <msw@redhat.com> | 1999-06-26 00:55:44 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-06-26 00:55:44 +0000 |
commit | 9978e7cf5285e2e7820f5f0928bc9ecb211f8d1e (patch) | |
tree | d1c0818d97176dd81d8815a534204c35cbacb080 /lilo.py | |
parent | d99c23fb150bad653dd3081c9a2b20bee999793f (diff) | |
download | anaconda-9978e7cf5285e2e7820f5f0928bc9ecb211f8d1e.tar.gz anaconda-9978e7cf5285e2e7820f5f0928bc9ecb211f8d1e.tar.xz anaconda-9978e7cf5285e2e7820f5f0928bc9ecb211f8d1e.zip |
lilo.py: chown lilo.conf to 0644
text.py: fleshed out package installation screen - we now pass the header
to the update functions so they can get whatever info they need
todo.py: pass header to setPackage, call completePackage on
RPMCALLBACK_INST_CLOSE_FILE callback
Pass the total size and number of packages in the transaction to
the status window
loader/lang.h: more i18n defines
loader/loader.c: start of loader steps, pulled network device configuration
out into isys
Diffstat (limited to 'lilo.py')
-rw-r--r-- | lilo.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,4 +1,5 @@ import string +import os class LiloConfiguration: @@ -35,6 +36,7 @@ class LiloConfiguration: f = open(file, "w") f.write(self.__repr__()) f.close() + os.chmod(file, 0644) def read(self, file): f = open(file, "r") |