[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[rhel6-branch 04/10] Improvements to list-harddrives-stub
- From: Martin Gracik <mgracik redhat com>
- To: anaconda-devel-list redhat com
- Subject: [rhel6-branch 04/10] Improvements to list-harddrives-stub
- Date: Wed, 1 Jun 2011 15:18:26 +0200
Related: rhbz#706099
---
command-stubs/list-harddrives-stub | 31 +++++++++++++------------------
1 files changed, 13 insertions(+), 18 deletions(-)
diff --git a/command-stubs/list-harddrives-stub b/command-stubs/list-harddrives-stub
index 75e8f89..16279f5 100755
--- a/command-stubs/list-harddrives-stub
+++ b/command-stubs/list-harddrives-stub
@@ -1,8 +1,8 @@
#!/usr/bin/python
#
-# scan system for harddrives and output device name/size
+# list-harddrives-stub
#
-# Copyright (C) 2007, 2009 Red Hat, Inc. All rights reserved.
+# Copyright (C) 2007, 2009, 2011 Red Hat, Inc. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -18,26 +18,21 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
-import os
-import sys
import parted
-import _ped
-def main(argv):
- lst = set()
- for dev in filter(lambda d: d.type != parted.DEVICE_DM, parted.getAllDevices()):
- if dev.path.startswith("/dev/"):
- path = dev.path[5:]
- else:
- path = dev.path
+def main():
- lst.add((path, dev.getSize()))
+ def get_devices():
+ devices = parted.getAllDevices()
+ devices = [d for d in devices if d.type != parted.DEVICE_DM]
+ for dev in devices:
+ path = dev.path[5:] if dev.path.startswith('/dev/') else dev.path
+ yield path, dev.getSize()
- lst = list(lst)
- lst.sort()
- for dev, size in lst:
+ for dev, size in sorted(set(get_devices())):
print dev, size
-if __name__ == "__main__":
- main(sys.argv)
+
+if __name__ == '__main__':
+ main()
--
1.7.3.2
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]