~adam-collard/charms/trusty/swift-proxy/add-missing-symlinks

« back to all changes in this revision

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

  • Committer: Liam Young
  • Date: 2015-07-29 10:47:50 UTC
  • Revision ID: liam.young@canonical.com-20150729104750-ptcsupr8u0pohm75
[gnuoy,trivial] Pre-release charmhelper sync

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