These are now in the generated crush maps, so it seems appropriate to
recompile them :).
Reported-by: Martin Mailand <martin@tuxadero.com>
Signed-off-by: Sage Weil <sage@newdream.net>
] ];
posint = leaf_node_d[ lexeme_d[ +digit_p ] ];
negint = leaf_node_d[ lexeme_d[ ch_p('-') >> +digit_p ] ];
- name = leaf_node_d[ lexeme_d[ +( alnum_p || ch_p('-') || ch_p('_')) ] ];
+ name = leaf_node_d[ lexeme_d[ +( alnum_p || ch_p('-') || ch_p('_') || ch_p('.')) ] ];
// devices
device = str_p("device") >> posint >> name;