#---------------------------------------------------------------------------- # Logrotate for MariaDB 11.4 # # Creation: 2024-11-08 hbfl # Last Update: $Id$ # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. #---------------------------------------------------------------------------- /var/log/mysqld/114/mysqld.log { # create 600 mysql mysql su mysql mysql notifempty daily rotate 3 missingok compress postrotate # just if mysqld is really running if /usr/lib/mysql/114/bin/mariadb-admin --socket=/run/mysql/114/mysql.sock status &>/dev/null then /usr/lib/mysql/114/bin/mariadb-admin --socket=/run/mysql/114/mysql.sock flush-logs fi endscript }