summaryrefslogtreecommitdiffstats
path: root/isys/testprobe
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-11-22 00:22:29 +0000
committerJeremy Katz <katzj@redhat.com>2003-11-22 00:22:29 +0000
commitc348a3fbe61816d788fa60efd0ba59ad8b8519d1 (patch)
treee81637cd6dc649cc048aad895039ea6bd1153675 /isys/testprobe
parent91e7edf0bfe395d7a39e18a4bac56a98f9f59266 (diff)
downloadanaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.tar.gz
anaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.tar.xz
anaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.zip
not used anymore
Diffstat (limited to 'isys/testprobe')
-rwxr-xr-xisys/testprobe30
1 files changed, 0 insertions, 30 deletions
diff --git a/isys/testprobe b/isys/testprobe
deleted file mode 100755
index 4ed5dce9c..000000000
--- a/isys/testprobe
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/usr/bin/python
-
-import _isys
-
-p = _isys.ProbedList()
-p.updateNet()
-p.updateIde()
-p.updateScsi()
-
-i = 0
-print "found devices:"
-#while (i < len(p)):
-# print "\t", p[i]
-# i = i + 1
-
-print len (p)
-
-for i in p:
- print "\t", i
-
-print "Removable test"
-for (dclass, path, comment) in p:
-# print "IDE Test-> ",path,_isys.isIdeRemovable("/dev/"+path)
-# print "SCSI Test-> ",path,_isys.isScsiRemovable("/dev/"+path)
- import isys
-
- if dclass != 'net':
- print path, isys.driveIsRemovable(path)
-
-