summaryrefslogtreecommitdiff
path: root/debian/mariadb-server-10.7.mysql-server.logrotate
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2021-11-02 16:04:32 +0100
committerSergei Golubchik <serg@mariadb.org>2021-11-02 20:08:42 +0100
commit892153bd7276274641baed510fe09bcd460a15b3 (patch)
tree3b1503c399cba37f60e9fb3994d03f8b746570a1 /debian/mariadb-server-10.7.mysql-server.logrotate
parentd6e3cd6f233730e168624441d4025de5ce83affd (diff)
downloadmariadb-git-892153bd7276274641baed510fe09bcd460a15b3.tar.gz
10.8 branch
Diffstat (limited to 'debian/mariadb-server-10.7.mysql-server.logrotate')
-rw-r--r--debian/mariadb-server-10.7.mysql-server.logrotate20
1 files changed, 0 insertions, 20 deletions
diff --git a/debian/mariadb-server-10.7.mysql-server.logrotate b/debian/mariadb-server-10.7.mysql-server.logrotate
deleted file mode 100644
index 4111a276dc3..00000000000
--- a/debian/mariadb-server-10.7.mysql-server.logrotate
+++ /dev/null
@@ -1,20 +0,0 @@
-# - I put everything in one block and added sharedscripts, so that mysql gets
-# flush-logs'd only once.
-# Else the binary logs would automatically increase by n times every day.
-# - The error log is obsolete, messages go to syslog now.
-/var/log/mysql/mysql.log /var/log/mysql/mysql-slow.log /var/log/mysql/mariadb-slow.log /var/log/mysql/error.log {
- daily
- rotate 7
- missingok
- create 640 mysql adm
- compress
- sharedscripts
- postrotate
- test -x /usr/bin/mysqladmin || exit 0
- if [ -f `my_print_defaults --mysqld | grep -oP "pid-file=\K[^$]+"` ]; then
- # If this fails, check debian.conf!
- mysqladmin --defaults-file=/etc/mysql/debian.cnf --local flush-error-log \
- flush-engine-log flush-general-log flush-slow-log
- fi
- endscript
-}