summaryrefslogtreecommitdiffstats
path: root/iutil.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-12-06 17:39:06 -0500
committerJeremy Katz <katzj@redhat.com>2007-12-06 17:40:09 -0500
commit6e0a69b990414351a1d2c579c27cf670907a044f (patch)
tree3fc59c266d8ce1ebe08bd7e6a151478b60cc39c7 /iutil.py
parentf7a7f8030ffae0ed0ec53cf44f2074050faf50a2 (diff)
downloadanaconda-6e0a69b990414351a1d2c579c27cf670907a044f.tar.gz
anaconda-6e0a69b990414351a1d2c579c27cf670907a044f.tar.xz
anaconda-6e0a69b990414351a1d2c579c27cf670907a044f.zip
Remove final traces of /tmp/ramfs usage
We used to need /tmp/ramfs since /tmp was from an initrd and thus had limited writable space. With initramfs, everything is already ramfs
Diffstat (limited to 'iutil.py')
-rw-r--r--iutil.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/iutil.py b/iutil.py
index ffe5d9b4d..e6a6c3d77 100644
--- a/iutil.py
+++ b/iutil.py
@@ -195,9 +195,6 @@ def memAvailable():
tram = memInstalled()
ramused = getDirSize("/tmp")
- if os.path.isdir("/tmp/ramfs"):
- ramused += getDirSize("/tmp/ramfs")
-
return tram - ramused
## Get the amount of RAM installed in the machine.