From: nic Date: Mon, 28 Feb 2005 18:35:18 +0000 (+0000) Subject: fix typo X-Git-Tag: v1_8_0_110~486^7~167 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=9322167677e59345dfdd6d0a19db74f5678ac5f5;p=fs%2Flustre-release.git fix typo --- diff --git a/lustre/utils/lconf b/lustre/utils/lconf index 2b95887..a46c518 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -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");