diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-22 00:22:29 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-22 00:22:29 +0000 |
commit | c348a3fbe61816d788fa60efd0ba59ad8b8519d1 (patch) | |
tree | e81637cd6dc649cc048aad895039ea6bd1153675 /isys/testprobe | |
parent | 91e7edf0bfe395d7a39e18a4bac56a98f9f59266 (diff) | |
download | anaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.tar.gz anaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.tar.xz anaconda-c348a3fbe61816d788fa60efd0ba59ad8b8519d1.zip |
not used anymore
Diffstat (limited to 'isys/testprobe')
-rwxr-xr-x | isys/testprobe | 30 |
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) - - |