def ceph_joined():
    log('Start Ceph Relation Joined')
    # NOTE fixup
    # utils.configure_source()
    ceph.install()
    log('Finish Ceph Relation Joined')
Esempio n. 2
0
def ceph_joined():
    log('Start Ceph Relation Joined')
    # NOTE fixup
    # utils.configure_source()
    ceph.install()
    log('Finish Ceph Relation Joined')
Esempio n. 3
0
 def test_install(self, _exists, _install, _mkdir):
     _exists.return_value = False
     ceph_utils.install()
     _mkdir.assert_called_with('/etc/ceph')
     _install.assert_called_with('ceph-common', fatal=True)