with rpm package copy over crimson-osd over ceph-osd, we don't
have way to know if we are using crimson osd or classic.
with --version output we will get the output if we are using
crimson.
Fixes: https://tracker.ceph.com/issues/67227
Signed-off-by: Nitzan Mordechai <nmordech@redhat.com>
oss << "ceph version " << CEPH_GIT_NICE_VER
<< " (" << STRINGIFY(CEPH_GIT_VER) << ") "
<< ceph_release_name(CEPH_RELEASE)
- << " (" << CEPH_RELEASE_TYPE << ")";
+ << " (" << CEPH_RELEASE_TYPE << ")"
+#ifdef WITH_SEASTAR
+ << " (crimson)"
+#endif
+ ;
return oss.str();
}