Whamcloud - gitweb
fix typo
authornic <nic>
Mon, 28 Feb 2005 18:35:18 +0000 (18:35 +0000)
committernic <nic>
Mon, 28 Feb 2005 18:35:18 +0000 (18:35 +0000)
lustre/utils/lconf

index 2b95887..a46c518 100755 (executable)
@@ -2729,7 +2729,8 @@ def verify_devpath(devpath, name):
 
     else:
         for line in out:
-            res = re.compile("^Filesystem.features:.*journal_dev.").search(line)            if res:
+            res = re.compile("^Filesystem.features:.*journal_dev.").search(line)
+            if res:
                 panic("The back-end storage device \""+devpath+"\", specified for Lustre service \""+name+"\", contains an ext3 external journal, instead of a proper ext3 file system.\n\nIt's possible that you meant to specify a different device, or that you meant to reformat this device before using it.  If you are intending to use a file system with an external journal, then the Lustre configuration file should point to the device that contains the main ext3 file system, not the journal device.\n");