[RN 6.1] 6.1 MU 3 - Logrotate atop issue

Added section that describes fix of the bug 1452389

Change-Id: I1038d7690a078349de61290c05045d647e2fc5a1
This commit is contained in:
Denis V. Meltsaykin
2015-10-13 16:50:12 +03:00
parent 80fe5794a7
commit 401471f0d6
3 changed files with 47 additions and 0 deletions

View File

@@ -82,3 +82,7 @@ The following updates for Mirantis OpenStack 6.1 are shared for an early access.
-----
.. include:: /pages/maintenance-updates/v61/1504916-mu3-openstack.rst
-----
.. include:: /pages/maintenance-updates/v61/1452389-atop-logrotate.rst

View File

@@ -0,0 +1,42 @@
.. _mos61mu-1452389:
logrotate is rotating already rotated atop's logs
=================================================
The existing logrotate configuration improperly rotates the log
file which is not necessary due to the daily restart of atop. The
binary retention is now handled via a new atop retention cron.
The fix removes the atop logrotate configuration.
See `LP1452389 <https://bugs.launchpad.net/bugs/1452389>`_.
Affected packages
-----------------
* **CentOS/@6.1:** fuel-library6.1=6.1.0-6757.1
Fixed packages
--------------
* **CentOS/@6.1:** fuel-library6.1=6.1.0-6757.2
Patching scenario
-----------------
Run the following commands on the Fuel Master node::
yum clean expire-cache
yum -y update fuel-library
.. note:: After updating fuel-library package on the Fuel Master node, only
newly created environments are deployed with the fixed behavior of logrotate.
In order to fix the existing environments, execute the commands below.
Do the following actions on all the slave nodes in the deployed environment:
#. Create a file named `atop_retention` in the `/etc/cron.daily`
directory with the following contents::
#!/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
find /var/log/atop -type f -name 'atop_*' -mtime +7 -delete
ln -f -s /var/log/atop/atop_$(date +%Y%m%d) /var/log/atop/atop_current
#. Delete the file `/etc/logrotate.d/atop`.

View File

@@ -62,3 +62,4 @@ Proposed updates
* :ref:`#1504916 <mos61mu-1504916>` Cumulative OpenStack update (14 fixes)
* :ref:`#1452389 <mos61mu-1452389>` logrotate is rotating already rotated atop's logs