ceph_chef_secure_password

in libraries/ceph_chef_helper.rb [791:796]


def ceph_chef_secure_password(len = 20)
  pw = ''
  pw << ::OpenSSL::Random.random_bytes(1).gsub(/\W/, '') while pw.length < len
  pw
end