From cdead55ecf4c1282e129a49796b34966b8471c05 Mon Sep 17 00:00:00 2001 From: shaver Date: Fri, 11 Oct 2002 04:42:16 +0000 Subject: [PATCH] Add -f to the short_opts. What was I smoking before, exactly? --- lustre/utils/lconf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lustre/utils/lconf b/lustre/utils/lconf index a06ea98..b933ad3 100755 --- a/lustre/utils/lconf +++ b/lustre/utils/lconf @@ -1456,7 +1456,7 @@ def doHost(lustreNode, hosts): # Command line processing # def parse_cmdline(argv): - short_opts = "hdnv" + short_opts = "hdnvf" long_opts = ["ldap", "reformat", "lustre=", "verbose", "gdb", "portals=", "makeldiff", "cleanup", "noexec", "help", "node=", "nomod", "nosetup", @@ -1495,7 +1495,7 @@ def parse_cmdline(argv): config.nosetup(1) if o == "--dump": config.dump_file(a) - if o in ("--force", "-f"): + if o in ("-f", "--force"): config.force(1) return args -- 1.8.3.1