summaryrefslogtreecommitdiffstats
path: root/fsset.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-25 23:06:08 +0000
committerMatt Wilson <msw@redhat.com>2001-07-25 23:06:08 +0000
commit414fa9c201b3a29fba8a8e0daf0f92851474d329 (patch)
tree9772fff8abd47295ddf63b5189c2e34388c8b640 /fsset.py
parent0d08683d01ea38e8e150579872fd2998b7ae1181 (diff)
downloadanaconda-414fa9c201b3a29fba8a8e0daf0f92851474d329.tar.gz
anaconda-414fa9c201b3a29fba8a8e0daf0f92851474d329.tar.xz
anaconda-414fa9c201b3a29fba8a8e0daf0f92851474d329.zip
never attempt to mount shm in the installer
Diffstat (limited to 'fsset.py')
-rw-r--r--fsset.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/fsset.py b/fsset.py
index fce9d21db..f6db693ae 100644
--- a/fsset.py
+++ b/fsset.py
@@ -449,6 +449,9 @@ class DevshmFileSystem(PsudoFileSystem):
def __init__(self):
PsudoFileSystem.__init__(self, "tmpfs")
+ def isMountable(self):
+ return 0
+
fileSystemTypeRegister(DevshmFileSystem())
class AutoFileSystem(PsudoFileSystem):