summaryrefslogtreecommitdiffstats
path: root/isys/testprobe
blob: f0b1573a5bb54dc7922a59579a6f5445c26c63bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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