~alai/charms/trusty/contrail-configuration-inc-timeout/trunk

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/storage/linux/ceph.py

  • Committer: Robert Ayres
  • Date: 2015-08-28 10:58:17 UTC
  • Revision ID: robert.ayres@canonical.com-20150828105817-c8ar12o1x0o35uxc
Sync charm helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
KEYFILE = '/etc/ceph/ceph.client.{}.key'
61
61
 
62
62
CEPH_CONF = """[global]
63
 
 auth supported = {auth}
64
 
 keyring = {keyring}
65
 
 mon host = {mon_hosts}
66
 
 log to syslog = {use_syslog}
67
 
 err to syslog = {use_syslog}
68
 
 clog to syslog = {use_syslog}
 
63
auth supported = {auth}
 
64
keyring = {keyring}
 
65
mon host = {mon_hosts}
 
66
log to syslog = {use_syslog}
 
67
err to syslog = {use_syslog}
 
68
clog to syslog = {use_syslog}
69
69
"""
70
70
 
71
71