ceph: disable logrotate

This screwed up the log archival step at the end, and generally makes a
mess of automated runs.

Fixe: #5451
This commit is contained in:
Sage Weil 2013-06-26 17:48:03 -07:00
parent ee03afaa60
commit 140e63b413

View File

@ -110,6 +110,17 @@ def ceph_log(ctx, config):
wait=False,
)
)
log.info('Disabling ceph logrotate...')
run.wait(
ctx.cluster.run(
args=[
'sudo',
'rm', '-f', '--',
'/etc/logrotate.d/ceph',
],
wait=False,
)
)
log.info('Creating extra log directories...')
run.wait(
ctx.cluster.run(