Stop accepting old-style section names of the form $type$id. Instead,
we want section names of the form $type.$id. So [osd0] will no longer
be a valid section name; instead, use [osd.0].
Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
{
sections.push_back(name.to_str());
- std::string alt_name(name.get_type_name());
- alt_name += name.get_id();
- sections.push_back(alt_name);
-
sections.push_back(name.get_type_name());
sections.push_back("global");
m_name += ".";
m_name += *m;
sections.push_back(m_name);
- std::string m_altname("mon");
- m_altname += *m;
- sections.push_back(m_altname);
sections.push_back("mon");
sections.push_back("global");
std::string val;
log file = mds_log\n\
[osd]\n\
log file = osd_log\n\
-[osd0]\n\
+[osd.0]\n\
log file = osd0_log\n\
";