From 9322167677e59345dfdd6d0a19db74f5678ac5f5 Mon Sep 17 00:00:00 2001 From: nic Date: Mon, 28 Feb 2005 18:35:18 +0000 Subject: [PATCH] fix typo --- lustre/utils/lconf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); -- 1.8.3.1