socialnerds/hive
socialnerds
/
hive
Archived
1
0
Fork 0

test push

This commit is contained in:
David 2012-05-20 18:09:51 +02:00
parent f06c3ccc56
commit c7f8e97302
1 changed files with 5 additions and 4 deletions

View File

@ -1,15 +1,14 @@
#!/usr/bin/python2
#!/usr/bin/python2 -B
""" simple display to show results of disk.py """
import disk
#output
if __name__ == "__main__":
diskmoninstance = disk.diskmon()
for partition in diskmoninstance.partitions:
print "device:\t\t" + str(partition["device"]) + \
"\nuuid:\t\t" + str(partition["uuid"])
print "device\t\t:" + str(partition["device"]) + \
"\nuuid\t\t:" + str(partition["uuid"])
if partition.has_key("mountpoint"):
print "mountpoint:\t" + str(partition["mountpoint"]) + \
"\nfilesystem:\t" + str(partition["filesystem"]) + \
@ -18,3 +17,5 @@ if __name__ == "__main__":
"\nfree blocks:\t" + str(partition["free blocks"]) + "\n"
else:
print "\n"
#end of file