From: Sage Weil Date: Thu, 21 Nov 2019 22:48:40 +0000 (-0600) Subject: ceph-daemon: ceph-volume works without an fsid X-Git-Tag: v15.1.0~796^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F31798%2Fhead;p=ceph.git ceph-daemon: ceph-volume works without an fsid Signed-off-by: Sage Weil --- diff --git a/src/ceph-daemon/ceph-daemon b/src/ceph-daemon/ceph-daemon index 480ce55762aa..802765ac46fe 100755 --- a/src/ceph-daemon/ceph-daemon +++ b/src/ceph-daemon/ceph-daemon @@ -1352,7 +1352,8 @@ def command_enter(): @infer_fsid def command_ceph_volume(): # type: () -> None - make_log_dir(args.fsid) + if args.fsid: + make_log_dir(args.fsid) mounts = get_container_mounts(args.fsid, 'osd', None)