~junaidali/charms/trusty/plumgrid-director/pg-restart

« back to all changes in this revision

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

  • Committer: bbaqar at plumgrid
  • Date: 2015-07-29 18:07:31 UTC
  • Revision ID: bbaqar@plumgrid.com-20150729180731-ioynar8x3u5pxytc
Addressed reviews by Charmers

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