summaryrefslogtreecommitdiffstats
path: root/commands/storage/lmi
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2014-01-21 10:06:40 +0100
committerJan Safranek <jsafrane@redhat.com>2014-01-21 10:06:40 +0100
commitada83581573665f2b0706da1a3323caecec5dc87 (patch)
tree7e21af2954cbd8caa7bf81a2778c16cf2f39fadc /commands/storage/lmi
parente881002cc2f46a953858c1ff02ca9f1a4787c355 (diff)
downloadopenlmi-scripts-ada83581573665f2b0706da1a3323caecec5dc87.tar.gz
openlmi-scripts-ada83581573665f2b0706da1a3323caecec5dc87.tar.xz
openlmi-scripts-ada83581573665f2b0706da1a3323caecec5dc87.zip
Show file system names in lower case.
Diffstat (limited to 'commands/storage/lmi')
-rw-r--r--commands/storage/lmi/scripts/storage/fs_cmd.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/storage/lmi/scripts/storage/fs_cmd.py b/commands/storage/lmi/scripts/storage/fs_cmd.py
index 93d91ca..5557852 100644
--- a/commands/storage/lmi/scripts/storage/fs_cmd.py
+++ b/commands/storage/lmi/scripts/storage/fs_cmd.py
@@ -108,7 +108,8 @@ class ListSupported(command.LmiLister):
caps = ns.LMI_FileSystemConfigurationCapabilities.first_instance()
cls = ns.LMI_FileSystemConfigurationCapabilities
for fstype in caps.SupportedActualFileSystemTypes:
- yield [cls.SupportedActualFileSystemTypesValues.value_name(fstype)]
+ fsname = cls.SupportedActualFileSystemTypesValues.value_name(fstype)
+ yield [fsname.lower()]
class Create(command.LmiCheckResult):