diff options
author | Sage Weil <sage@inktank.com> | 2012-11-26 08:37:45 -0800 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2012-11-26 08:37:45 -0800 |
commit | 525f942edc2648db8f5e4d989fcac1d2a9d403bb (patch) | |
tree | 2d805bbbbfc9b49287937d791d57722b676857b4 | |
parent | bc32fc42d2bb38c300f65d577ab105f02cc50571 (diff) | |
download | ceph-525f942edc2648db8f5e4d989fcac1d2a9d403bb.tar.gz |
init-ceph: do not make noise about missing devs
It is pretty normal not to include the devs line in the ceph.conf. Do not
print/warn about it.
Signed-off-by: Sage Weil <sage@inktank.com>
-rw-r--r-- | src/init-ceph.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/init-ceph.in b/src/init-ceph.in index 2bafa995f75..1c9e0270d5d 100644 --- a/src/init-ceph.in +++ b/src/init-ceph.in @@ -229,8 +229,6 @@ for name in $what; do get_conf tmp_btrfs_devs "" "btrfs devs" if [ -n "$tmp_btrfs_devs" ]; then fs_devs="$tmp_btrfs_devs" - else - echo No osd devs defined! fi fi first_dev=`echo $fs_devs | cut '-d ' -f 1` |