summaryrefslogtreecommitdiffstats
path: root/command-stubs/mknod-stub
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-01-29 14:31:55 -0500
committerChris Lumens <clumens@redhat.com>2008-01-29 14:31:55 -0500
commit3335f2e37cf3c969ae7e3d68283f144459973441 (patch)
tree83e84af9161c45a3eabcddebe690ffb2cdad7ac7 /command-stubs/mknod-stub
parent553f494dea845b8d3ae30af5977619ad05084af2 (diff)
downloadanaconda-3335f2e37cf3c969ae7e3d68283f144459973441.tar.gz
anaconda-3335f2e37cf3c969ae7e3d68283f144459973441.tar.xz
anaconda-3335f2e37cf3c969ae7e3d68283f144459973441.zip
Remove the last references to makeDevInode (#430784).
Diffstat (limited to 'command-stubs/mknod-stub')
-rwxr-xr-xcommand-stubs/mknod-stub18
1 files changed, 2 insertions, 16 deletions
diff --git a/command-stubs/mknod-stub b/command-stubs/mknod-stub
index 03320abc0..dd72aeb24 100755
--- a/command-stubs/mknod-stub
+++ b/command-stubs/mknod-stub
@@ -26,8 +26,7 @@ import stat
import os
def usage():
- sys.stderr.write("Usage: %s <path> [b|c] <major> <minor> or\n" %(sys.argv[0],))
- sys.stderr.write("Usage: %s <path>\n" %(sys.argv[0],))
+ sys.stderr.write("Usage: %s <path> [b|c] <major> <minor>\n" %(sys.argv[0],))
sys.exit(1)
def main():
@@ -38,19 +37,6 @@ def main():
usage()
path = sys.argv[1]
- if (len(sys.argv) == 2):
- drive = path
- # strip off any path elements up until what's useful for making the
- # inode
- while (drive.find('/') != -1):
- if (drive.startswith("cciss") or drive.startswith("ida") or
- drive.startswith("rd") or drive.startswith("ataraid")
- or drive.startswith("iseries") or drive.startswith("i2o")
- or drive.startswith("sx8")):
- break
- drive = drive[drive.find('/') + 1:]
- isys.makeDevInode(drive, path)
- sys.exit(0)
if len(sys.argv) < 5:
usage()
@@ -65,7 +51,7 @@ def main():
major = int(sys.argv[3])
minor = int(sys.argv[4])
path = sys.argv[1]
-
+
os.mknod(path, 0644 | type, os.makedev(major, minor))
if __name__ == "__main__":