summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@inktank.com>2013-06-12 21:47:09 -0700
committerSage Weil <sage@inktank.com>2013-06-18 17:55:34 -0700
commit3383ba6326aeff6500df4792fcef65740dd6b3ea (patch)
tree0926dd3d327a5ca6c85a150c2ec749b7640bb7b5
parent41e1416c3585507db75f10ed69f65a5a80370827 (diff)
downloadceph-3383ba6326aeff6500df4792fcef65740dd6b3ea.tar.gz
config: fix run_dir typo
From 654299108bfb11e7dce45f54946d1505f71d2de8. Signed-off-by: Sage Weil <sage@inktank.com> (cherry picked from commit e9689ac6f5f50b077a6ac874f811d204ef996c96)
-rw-r--r--src/common/config_opts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config_opts.h b/src/common/config_opts.h
index 1eff739c01b..e97a055f6ce 100644
--- a/src/common/config_opts.h
+++ b/src/common/config_opts.h
@@ -24,7 +24,7 @@ OPTION(monmap, OPT_STR, "")
OPTION(mon_host, OPT_STR, "")
OPTION(lockdep, OPT_BOOL, false)
OPTION(run_dir, OPT_STR, "/var/run/ceph") // the "/var/run/ceph" dir, created on daemon startup
-OPTION(admin_socket, OPT_STR, "run_dir/$cluster-$name.asok") // default changed by common_preinit()
+OPTION(admin_socket, OPT_STR, "$run_dir/$cluster-$name.asok") // default changed by common_preinit()
OPTION(daemonize, OPT_BOOL, false) // default changed by common_preinit()
OPTION(pid_file, OPT_STR, "") // default changed by common_preinit()