diff options
author | Mike Fulbright <msf@redhat.com> | 2001-04-23 19:25:24 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-04-23 19:25:24 +0000 |
commit | 0a3f164453a8a033d6f8d8b134464a06902c2109 (patch) | |
tree | 15aaf508a73b9e17348763bd51c38a7ec41d04cc | |
parent | e781269072064238b6c6bac0d2f632f44e12e477 (diff) | |
download | anaconda-0a3f164453a8a033d6f8d8b134464a06902c2109.tar.gz anaconda-0a3f164453a8a033d6f8d8b134464a06902c2109.tar.xz anaconda-0a3f164453a8a033d6f8d8b134464a06902c2109.zip |
dont make swapfile world readable
-rw-r--r-- | fstab.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -509,7 +509,7 @@ class Fstab: iutil.execWithRedirect ("/usr/sbin/mkswap", [ "mkswap", '-v1', file ], stdout = None, stderr = None) - + os.chmod(file, 0600) formatThisSwap = 1 else: log("swap file %s is in the fstab, but does not exist", |