From e725f38ae2e04cb894fc0f4f1b3005c9e3d03e2b Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 16 Jun 2009 16:39:58 -0700 Subject: [PATCH] config: no -p shorthand for --pid-file It's not used by anything anyway. --- src/config.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cc b/src/config.cc index e78521b9aab..766e489fbcf 100644 --- a/src/config.cc +++ b/src/config.cc @@ -292,7 +292,7 @@ static struct config_option config_optionsp[] = { OPTION(log_dir, 0, OPT_STR, "/var/log/ceph"), // if daemonize == true OPTION(log_sym_dir, 0, OPT_STR, 0), OPTION(log_to_stdout, 0, OPT_BOOL, true), - OPTION(pid_file, 'p', OPT_STR, 0), + OPTION(pid_file, 0, OPT_STR, 0), OPTION(conf, 'c', OPT_STR, "/etc/ceph/ceph.conf"), OPTION(chdir, 0, OPT_STR, "/"), OPTION(fake_clock, 0, OPT_BOOL, false),