summaryrefslogtreecommitdiffstats
path: root/lilo.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-06-26 00:55:44 +0000
committerMatt Wilson <msw@redhat.com>1999-06-26 00:55:44 +0000
commit9978e7cf5285e2e7820f5f0928bc9ecb211f8d1e (patch)
treed1c0818d97176dd81d8815a534204c35cbacb080 /lilo.py
parentd99c23fb150bad653dd3081c9a2b20bee999793f (diff)
downloadanaconda-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.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lilo.py b/lilo.py
index 60e7206fa..e8bd777f8 100644
--- a/lilo.py
+++ b/lilo.py
@@ -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")