diff options
author | Chris Lumens <clumens@redhat.com> | 2007-12-10 14:57:08 -0500 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2007-12-10 16:35:22 -0500 |
commit | 2f5eb1d816468c5eaf9d85685d0ba0ef0a507e17 (patch) | |
tree | b3d33a20fd16037a03c2c295bbf747243a4bd183 | |
parent | 3956ba7101f833282399416fcf0cc900bc9ee14b (diff) | |
download | anaconda-2f5eb1d816468c5eaf9d85685d0ba0ef0a507e17.tar.gz anaconda-2f5eb1d816468c5eaf9d85685d0ba0ef0a507e17.tar.xz anaconda-2f5eb1d816468c5eaf9d85685d0ba0ef0a507e17.zip |
makeDevInode no longer exists.
-rwxr-xr-x | isys/isys.py | 4 | ||||
-rw-r--r-- | yuminstall.py | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/isys/isys.py b/isys/isys.py index ce34413e3..7fff14237 100755 --- a/isys/isys.py +++ b/isys/isys.py @@ -759,9 +759,7 @@ def ext2Clobber(device): _isys.e2fsclobber(device) def ext2IsDirty(device): - makeDevInode(device, "/tmp/disk") - label = _isys.e2dirty("/tmp/disk"); - os.unlink("/tmp/disk") + label = _isys.e2dirty(device) return label def ext2HasJournal(device): diff --git a/yuminstall.py b/yuminstall.py index 5c86ede65..e2d4cf543 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -404,8 +404,6 @@ class AnacondaYum(YumSorter): if verifyMedia(self.tree, discnum, self.timestamp): self.currentMedia = discnum - # make /tmp/cdrom again so cd gets ejected - isys.makeDevInode(self.anaconda.mediaDevice, "/tmp/cdrom") break if not done: |