Project

General

Profile

Bug #7103

Updated by Loïc Dachary over 10 years ago

In ceph.conf if 

 <pre> 
 

     mon_host = localhost 
 
     keyring = $mon_host/$cluster.keyring,$mon_host/$cluster.mon.keyring 
 </pre> 

 it will be expanded to 

     keyring = localhost/ceph.keyring,$mon_host/ceph.mon.keyring 

 instead of the expected 

     keyring = localhost/ceph.keyring,localhost/ceph.mon.keyring

Back